├── .github └── workflows │ └── test.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.rst ├── setup.py ├── src └── pytest_stress │ ├── __init__.py │ └── pytest_stress.py ├── tests └── test_stress.py └── tox.ini /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Imran Mumtaz -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/setup.py -------------------------------------------------------------------------------- /src/pytest_stress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pytest_stress/pytest_stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/src/pytest_stress/pytest_stress.py -------------------------------------------------------------------------------- /tests/test_stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/tests/test_stress.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-stress/HEAD/tox.ini --------------------------------------------------------------------------------