New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

process-tests

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

process-tests

Tools for testing processes.

  • 3.0.0
  • PyPI
  • Socket score

Maintainers
1

======== Overview

Tools for testing processes.

  • Free software: BSD 2-Clause License

Usage

::

from process_tests import ProcessTestCase
from process_tests import TestProcess

class MyTestCase(ProcessTestCase):
    def test_simple(self):
        with TestProcess('mydaemon', 'arg1', 'arg2') as proc:
            with self.dump_on_error(proc.read):
                self.wait_for_strings(proc.read, 10, # wait 10 seconds for process to output lines with these strings
                    'Started',
                    'Working',
                    'Done',
                )

Features

  • TODO

Examples

TODO

  • tests
  • docs

Requirements

:OS: Any :Runtime: Python 2.6, 2.7, 3.2, 3.3 or PyPy

Similar projects

  • TODO

Changelog

3.0.0 (2023-11-01)

  • Dropped Python 2 support.
  • Added an optional non-pipe TestProcess mode. You can use file objects for processes that are too verbose for a pipe.
  • Added some tests.

2.1.2 (2021-05-02)

  • Fixed another regression caused by the universal_newlines for Windows.

2.1.1 (2020-07-23)

  • Fixed regression caused by the universal_newlines (now the internals don't decode strings).

2.1.0 (2020-07-23)

  • Applied the cookiecutter-pylibrary templates.
  • TestProcess will use universal_newlines by default for the contained subprocess.Popen to make sure line buffering is actually used. This also fixes warnings on Python 3.

2.x (???)

  • Lots of wild stuff.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc