Metadata-Version: 2.1
Name: pytest-dependency
Version: 0.6.0
Summary: Manage dependencies of tests
Home-page: https://github.com/RKrahl/pytest-dependency
Author: Rolf Krahl
Author-email: rolf@rotkraut.de
License: Apache-2.0
Project-URL: Documentation, https://pytest-dependency.readthedocs.io/
Project-URL: Source, https://github.com/RKrahl/pytest-dependency
Project-URL: Download, https://github.com/RKrahl/pytest-dependency/releases/0.6.0/
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
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: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.4
Description-Content-Type: text/x-rst
License-File: LICENSE.txt

|gh-test| |rtd| |pypi|

.. |gh-test| image:: https://github.com/RKrahl/pytest-dependency/actions/workflows/run-tests.yaml/badge.svg
   :target: https://github.com/RKrahl/pytest-dependency/actions/workflows/run-tests.yaml
   :alt: GitHub Workflow Status
	 
.. |rtd| image:: https://img.shields.io/readthedocs/pytest-dependency/latest
   :target: https://pytest-dependency.readthedocs.io/en/latest/
   :alt: Documentation build status

.. |pypi| image:: https://img.shields.io/pypi/v/pytest-dependency
   :target: https://pypi.org/project/pytest-dependency/
   :alt: PyPI version

pytest-dependency – Manage dependencies of tests
================================================

This module is a plugin for the popular Python testing framework
`pytest`_.  It manages dependencies of tests: you may mark some tests
as dependent from other tests.  These tests will then be skipped if
any of the dependencies did fail or has been skipped.

Documentation
-------------

See the `online documentation`__.

The example test modules used in the documentation can be found in
doc/examples in the source distribution.

.. __: `Read the Docs site`_


Copyright and License
---------------------

- Copyright 2013–2015
  Helmholtz-Zentrum Berlin für Materialien und Energie GmbH
- Copyright 2016–2023 Rolf Krahl

Licensed under the `Apache License`_, Version 2.0 (the "License"); you
may not use this file except in compliance with the License.

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied.  See the License for the specific language governing
permissions and limitations under the License.


.. _pytest: http://pytest.org/
.. _Read the Docs site: https://pytest-dependency.readthedocs.io/
.. _Apache License: https://www.apache.org/licenses/LICENSE-2.0
