Metadata-Version: 2.1
Name: pytest-collector
Version: 0.1.0
Summary: Python package for collecting pytest.
Home-page: https://github.com/tadnir/pytest-collector
License: MIT
Author: michael tadnir
Author-email: tadnir50@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: pytest (>=7.0,<8.0)
Project-URL: Repository, https://github.com/tadnir/pytest-collector
Description-Content-Type: text/markdown

# pytest-collector
Python package for collecting pytest tests.

## Usage

`pip install pytest-collector`

```
import pytest_collector

# NOTE: this call will import the tests to the current process.
test_modules = pytest_collector.collect("path/to/tests/directory")
```
