├── .gitattributes ├── .github └── workflows │ ├── pythonpackage.yml │ └── pythonpublish.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pytest_reporter ├── __init__.py ├── hooks.py └── plugin.py ├── setup.cfg ├── setup.py ├── test_pytest_reporter.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- 1 | *.rst text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/README.rst -------------------------------------------------------------------------------- /pytest_reporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/pytest_reporter/__init__.py -------------------------------------------------------------------------------- /pytest_reporter/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/pytest_reporter/hooks.py -------------------------------------------------------------------------------- /pytest_reporter/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/pytest_reporter/plugin.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max_line_length=88 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/setup.py -------------------------------------------------------------------------------- /test_pytest_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/test_pytest_reporter.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christiansandberg/pytest-reporter/HEAD/tox.ini --------------------------------------------------------------------------------