Metadata-Version: 2.1
Name: pytest-manual-marker
Version: 0.1
Summary: pytest marker for marking manual tests
Home-page: https://gitlab.com/mkourim/pytest-manual-marker
Author: Martin Kourim
Author-email: mkourim@redhat.com
License: MIT
Keywords: py.test,pytest,testing
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Pytest
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
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: Intended Audience :: Developers
Requires-Dist: pytest

====================
pytest-manual-marker
====================

Pytest marker for marking manual tests. Adds options for collecting manual, automated (default) or both.


Usage
-----
Collect tests data::

    $ py.test --collect-only --manual  # collect only manual tests
    $ py.test --collect-only --include-manual  # collect both manual and automated tests

Install
-------
Install this plugin::

    $ pip install pytest-manual-marker

