Skip to main content

pytest plugin to manage external processes across test runs

Project description

Experimental py.test plugin for managing processes across test runs.

Usage

install via:

pip install pytest-xprocess

This will provide a xprocess fixture which helps you to ensure that one ore more longer-running processes are present for your tests. You can use it to start and pre-configure test-specific databases (Postgres, Couchdb, …).

Additionally there are two new command line options:

--xkill  # terminates all external processes
--xshow  # shows currently running processes and log files

xprocess fixture usage

You typically define a project-specific fixture which uses the xprocess fixture internally:

# content of conftest.py

import pytest

@pytest.fixture
def myserver(xprocess):
    def preparefunc(cwd):
        return ("PATTERN", [subprocess args])

    logfile = xprocess.ensure("myserver", preparefunc)
    conn = # create a connection or url/port info to the server
    return conn

The xprocess.ensure function takes a name for the external process because you can have multiple external processes.

The preparefunc is a function which gets the current working directory and returns a (PATTERN, args, env) tuple. If the server has not yet been started:

  • the returned args are used to perform a subprocess invocation with environment env (a mapping) and redirect its stdout to a new logfile

  • the PATTERN is waited for in the logfile before returning. It should thus match a state of your server where it is ready to answer queries.

  • the logfile is returned pointing to the line right after the match

else, if the server is already running simply the logfile is returned.

To inherit the main test process environment, return None for env, or omit it and return just (PATTERN, args) from the preparefunc.

Note that the plugin needs to persist the process ID and logfile information. It does this in a sub directory of the directory which contains a pytest.ini or setup.py file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-xprocess-0.11.tar.gz (10.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_xprocess-0.11-py2.py3-none-any.whl (7.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pytest-xprocess-0.11.tar.gz.

File metadata

File hashes

Hashes for pytest-xprocess-0.11.tar.gz
Algorithm Hash digest
SHA256 d1b1ea02ef9f3daf8d25127eac61e3c5db2998966c50e11c3d1ab3d8aed7c0f5
MD5 25551d726ccf673a21186bc622f3a28c
BLAKE2b-256 0a0c0f47ae04ee7c9cfcfa20bf4afd5bbac7618c0e8a7cbbfb85c6c410a3aae2

See more details on using hashes here.

File details

Details for the file pytest_xprocess-0.11-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_xprocess-0.11-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9286938cfa04c7b8999ee2805b4f734dd013523bcb4f16970ca44f02098799d0
MD5 44989468b80e92d91a835e61dcd2acb8
BLAKE2b-256 78560731f0245468b3927b7035050ce13d4b6e88ab36d35627631a4fc4623bf8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page