├── .coveragerc ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── pytest_jsonreport ├── __init__.py ├── plugin.py └── serialize.py ├── sample_report.json ├── setup.py ├── tests ├── __init__.py ├── conftest.py └── test_jsonreport.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/README.md -------------------------------------------------------------------------------- /pytest_jsonreport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest_jsonreport/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/pytest_jsonreport/plugin.py -------------------------------------------------------------------------------- /pytest_jsonreport/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/pytest_jsonreport/serialize.py -------------------------------------------------------------------------------- /sample_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/sample_report.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_jsonreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/tests/test_jsonreport.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numirias/pytest-json-report/HEAD/tox.ini --------------------------------------------------------------------------------