├── .coveragerc ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pytest_flakes.py ├── setup.cfg ├── setup.py ├── test_flakes.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/README.rst -------------------------------------------------------------------------------- /pytest_flakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/pytest_flakes.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/setup.py -------------------------------------------------------------------------------- /test_flakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/test_flakes.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asmeurer/pytest-flakes/HEAD/tox.ini --------------------------------------------------------------------------------