├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs └── index.md ├── mkdocs.yml ├── pytest_flakefinder.py ├── setup.cfg ├── setup.py ├── tests ├── conftest.py └── test_flakefinder.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/README.rst -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pytest_flakefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/pytest_flakefinder.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/setup.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_flakefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/tests/test_flakefinder.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dropbox/pytest-flakefinder/HEAD/tox.ini --------------------------------------------------------------------------------