├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── docs ├── index.md └── usage.md ├── example ├── requirements.txt ├── test_dummy.py └── tox.ini ├── mkdocs.yml ├── pytest_timeouts.py ├── setup.cfg ├── setup.py ├── test_pytest_timeouts.py └── tox.ini /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/docs/usage.md -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/example/requirements.txt -------------------------------------------------------------------------------- /example/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/example/test_dummy.py -------------------------------------------------------------------------------- /example/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/example/tox.ini -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pytest_timeouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/pytest_timeouts.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/setup.py -------------------------------------------------------------------------------- /test_pytest_timeouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/test_pytest_timeouts.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scony/pytest-timeouts/HEAD/tox.ini --------------------------------------------------------------------------------