├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .releaserc.json ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── pyproject.toml ├── src └── pytest_xflaky │ ├── __init__.py │ ├── add_decorator.py │ ├── github_blame.py │ └── plugin.py ├── tests ├── conftest.py └── test_add_decorator.py └── tox.ini /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/.releaserc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/docs/make.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pytest_xflaky/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pytest_xflaky/add_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/src/pytest_xflaky/add_decorator.py -------------------------------------------------------------------------------- /src/pytest_xflaky/github_blame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/src/pytest_xflaky/github_blame.py -------------------------------------------------------------------------------- /src/pytest_xflaky/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/src/pytest_xflaky/plugin.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_add_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/tests/test_add_decorator.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/pytest-xflaky/HEAD/tox.ini --------------------------------------------------------------------------------