1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
Metadata-Version: 2.1
Name: pytest-xprocess
Version: 0.22.2
Summary: A pytest plugin for managing processes across test runs.
Home-page: https://github.com/pytest-dev/pytest-xprocess/
Author: Holger Krekel
Author-email: holger@merlinux.eu
License: MIT
Classifier: Framework :: Pytest
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE
pytest-xprocess
===============
A pytest plugin for managing external processes across test runs.
.. image:: https://img.shields.io/github/last-commit/pytest-dev/pytest-xprocess?color=blue
:target: https://github.com/pytest-dev/pytest-xprocess/commits/master
:alt: GitHub last commit
.. image:: https://img.shields.io/github/issues-pr-closed-raw/pytest-dev/pytest-xprocess?color=blue
:target: https://github.com/pytest-dev/pytest-xprocess/pulls?q=is%3Apr+is%3Aclosed
:alt: GitHub closed pull requests
.. image:: https://img.shields.io/github/issues-closed/pytest-dev/pytest-xprocess?color=blue
:target: https://github.com/pytest-dev/pytest-xprocess/issues?q=is%3Aissue+is%3Aclosed
:alt: GitHub closed issues
.. image:: https://img.shields.io/pypi/dm/pytest-xprocess?color=blue
:target: https://pypi.org/project/pytest-xprocess/
:alt: PyPI - Downloads
.. image:: https://img.shields.io/github/languages/code-size/pytest-dev/pytest-xprocess?color=blue
:target: https://github.com/pytest-dev/pytest-xprocess
:alt: Code size
.. image:: https://img.shields.io/pypi/v/pytest-xprocess.svg?color=blue
:target: https://github.com/pytest-dev/pytest-xprocess/releases
:alt: Release
.. image:: https://img.shields.io/badge/license-MIT-blue.svg?color=blue
:target: https://github.com/pytest-dev/pytest-xprocess/blob/master/LICENSE
:alt: License
.. image:: https://img.shields.io/pypi/pyversions/pytest-xprocess.svg?color=blue
:target: https://pypi.org/project/pytest-xprocess
:alt: supported python versions
.. image:: https://img.shields.io/github/issues-raw/pytest-dev/pytest-xprocess.svg?color=blue
:target: https://github.com/pytest-dev/pytest-xprocess/issues
:alt: Issues
.. image:: https://github.com/pytest-dev/pytest-xprocess/workflows/build/badge.svg
:target: https://github.com/pytest-dev/pytest-xprocess/actions
:alt: build status
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/ambv/black
:alt: style
.. image:: https://readthedocs.org/projects/pytest-xprocess/badge/?version=latest
:target: https://pytest-xprocess.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
Installing
----------
Install using `pip`_:
.. code-block:: text
pip install pytest-xprocess
.. _pip: https://pip.pypa.io/en/stable/quickstart/
Useful Links
--------------
- Documentation: https://pytest-xprocess.readthedocs.io/
- Changelog: https://pytest-xprocess.readthedocs.io/en/latest/changes.html
- PyPI Releases: https://pypi.org/project/pytest-xprocess/
- Source Code: https://github.com/pytest-dev/pytest-xprocess
- Issue Tracker: https://github.com/pytest-dev/pytest-xprocess/issues/
- Pytest IRC channel: ircs://irc.libera.chat:6697/#pytest
- Pytest Discord Channel: https://discord.gg/k7F2ZFvJV3
|