├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── CHANGELOG.txt ├── LICENSE ├── MANIFEST.in ├── README.rst ├── codecov.yml ├── html ├── archive_body.html ├── archive_row.html ├── floating_error.html ├── screenshot_details.html ├── suite_row.html ├── template.html └── test_row.html ├── html_page ├── __init__.py ├── archive_body.py ├── archive_row.py ├── floating_error.py ├── page_decor.py ├── screenshot_details.py ├── suite_row.py ├── template.py └── test_row.py ├── pytest.ini ├── pytest_html_reporter ├── __init__.py ├── const_vars.py ├── html_reporter.py ├── plugin.py ├── time_converter.py └── util.py ├── requirements.txt ├── setup.py ├── tests ├── functional │ ├── Readme.md │ ├── test_approx.py │ ├── test_autouse.py │ ├── test_fixture.py │ ├── test_mark.py │ ├── test_parameterize.py │ ├── test_screenshot.py │ ├── test_selenium.py │ ├── test_simple.py │ ├── test_skip_xfail_xpass.py │ ├── test_usefixtures.py │ └── test_yield_fixture.py └── unit │ ├── helper.py │ ├── test_mvc_pages.py │ ├── test_plugin.py │ ├── test_time_converter.py │ └── test_util.py └── tox.ini /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/codecov.yml -------------------------------------------------------------------------------- /html/archive_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html/archive_body.html -------------------------------------------------------------------------------- /html/archive_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html/archive_row.html -------------------------------------------------------------------------------- /html/floating_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html/floating_error.html -------------------------------------------------------------------------------- /html/screenshot_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html/screenshot_details.html -------------------------------------------------------------------------------- /html/suite_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html/suite_row.html -------------------------------------------------------------------------------- /html/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html/template.html -------------------------------------------------------------------------------- /html/test_row.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html/test_row.html -------------------------------------------------------------------------------- /html_page/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html_page/archive_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html_page/archive_body.py -------------------------------------------------------------------------------- /html_page/archive_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html_page/archive_row.py -------------------------------------------------------------------------------- /html_page/floating_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html_page/floating_error.py -------------------------------------------------------------------------------- /html_page/page_decor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html_page/page_decor.py -------------------------------------------------------------------------------- /html_page/screenshot_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html_page/screenshot_details.py -------------------------------------------------------------------------------- /html_page/suite_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html_page/suite_row.py -------------------------------------------------------------------------------- /html_page/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html_page/template.py -------------------------------------------------------------------------------- /html_page/test_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/html_page/test_row.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/pytest.ini -------------------------------------------------------------------------------- /pytest_html_reporter/__init__.py: -------------------------------------------------------------------------------- 1 | from .util import screenshot as attach -------------------------------------------------------------------------------- /pytest_html_reporter/const_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/pytest_html_reporter/const_vars.py -------------------------------------------------------------------------------- /pytest_html_reporter/html_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/pytest_html_reporter/html_reporter.py -------------------------------------------------------------------------------- /pytest_html_reporter/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/pytest_html_reporter/plugin.py -------------------------------------------------------------------------------- /pytest_html_reporter/time_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/pytest_html_reporter/time_converter.py -------------------------------------------------------------------------------- /pytest_html_reporter/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/pytest_html_reporter/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/setup.py -------------------------------------------------------------------------------- /tests/functional/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/Readme.md -------------------------------------------------------------------------------- /tests/functional/test_approx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_approx.py -------------------------------------------------------------------------------- /tests/functional/test_autouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_autouse.py -------------------------------------------------------------------------------- /tests/functional/test_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_fixture.py -------------------------------------------------------------------------------- /tests/functional/test_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_mark.py -------------------------------------------------------------------------------- /tests/functional/test_parameterize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_parameterize.py -------------------------------------------------------------------------------- /tests/functional/test_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_screenshot.py -------------------------------------------------------------------------------- /tests/functional/test_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_selenium.py -------------------------------------------------------------------------------- /tests/functional/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_simple.py -------------------------------------------------------------------------------- /tests/functional/test_skip_xfail_xpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_skip_xfail_xpass.py -------------------------------------------------------------------------------- /tests/functional/test_usefixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_usefixtures.py -------------------------------------------------------------------------------- /tests/functional/test_yield_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/functional/test_yield_fixture.py -------------------------------------------------------------------------------- /tests/unit/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/unit/helper.py -------------------------------------------------------------------------------- /tests/unit/test_mvc_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/unit/test_mvc_pages.py -------------------------------------------------------------------------------- /tests/unit/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/unit/test_plugin.py -------------------------------------------------------------------------------- /tests/unit/test_time_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/unit/test_time_converter.py -------------------------------------------------------------------------------- /tests/unit/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tests/unit/test_util.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prashanth-sams/pytest-html-reporter/HEAD/tox.ini --------------------------------------------------------------------------------