├── .ci ├── codecov.yml └── report-coverage.sh ├── .coveragerc ├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── pytest_parallel └── __init__.py ├── setup.py ├── tasks.py ├── tests ├── conftest.py ├── test_concurrent.py └── test_general.py └── tox.ini /.ci/codecov.yml: -------------------------------------------------------------------------------- 1 | comment: off 2 | -------------------------------------------------------------------------------- /.ci/report-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/.ci/report-coverage.sh -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/README.md -------------------------------------------------------------------------------- /pytest_parallel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/pytest_parallel/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/setup.py -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_concurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/tests/test_concurrent.py -------------------------------------------------------------------------------- /tests/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/tests/test_general.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevlened/pytest-parallel/HEAD/tox.ini --------------------------------------------------------------------------------