Metadata-Version: 2.1
Name: pytest-testmon-oc
Version: 1.0.0
Summary: nOly selects tests affected by changed files and methods
Home-page: https://testmon.org
Author: Hoc Nguyen
Author-email: hocnv.qn@gmail.com
License: AGPL
Platform: linux
Platform: osx
Platform: win32
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
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 :: Only
Classifier: Framework :: Pytest
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: pytest (<8,>=5)
Requires-Dist: coverage (<7,>=5)

# Testmon OC

This is a pytest plug-in fork from [testmon](https://testmon.org).
Testmon OC only tests affected by recent changes. 
Not re-run for test failed before.

## Quickstart

    pip install pytest-testmon

    # build the dependency database and save it to .testmondata
    pytest --testmon

    # change some of your code (with test coverage)

    # only run tests affected by recent changes
    pytest --testmon

To learn more about different options you can use with testmon, please
head to [testmon.org](https://testmon.org)


