├── .gitignore ├── LICENSE ├── README.md ├── dist ├── PyTestReport-0.1.1-py3-none-any.whl ├── PyTestReport-0.1.1-py3.7.egg ├── PyTestReport-0.1.1.tar.gz ├── PyTestReport-0.1.2-py3-none-any.whl ├── PyTestReport-0.1.2-py3.7.egg ├── PyTestReport-0.1.2.tar.gz ├── PyTestReport-0.1.3-py3-none-any.whl ├── PyTestReport-0.1.3-py3.7.egg ├── PyTestReport-0.1.3.tar.gz ├── PyTestReport-0.1.4-py3-none-any.whl ├── PyTestReport-0.1.4-py3.7.egg ├── PyTestReport-0.1.4.tar.gz ├── PyTestReport-0.1.5-py3-none-any.whl ├── PyTestReport-0.1.5-py3.7.egg ├── PyTestReport-0.1.5.tar.gz ├── PyTestReport-0.1.6-py3-none-any.whl ├── PyTestReport-0.1.6-py3.7.egg ├── PyTestReport-0.1.6.tar.gz ├── PyTestReport-0.1.7-py3-none-any.whl ├── PyTestReport-0.1.7-py3.7.egg ├── PyTestReport-0.1.7.tar.gz ├── PyTestReport-0.1.9.2-py3-none-any.whl ├── PyTestReport-0.1.9.2-py3.7.egg ├── PyTestReport-0.1.9.2.tar.gz ├── PyTestReport-0.1.9.3-py3-none-any.whl ├── PyTestReport-0.1.9.3-py3.7.egg ├── PyTestReport-0.1.9.3.tar.gz └── PyTestReport-0.1.9.3.win32.zip ├── pytestreport ├── HTMLTestRunner.py ├── PyTestReportPlug.py ├── SendEmail.py ├── __init__.py ├── api.py ├── static │ ├── css │ │ ├── default.css │ │ └── legency.css │ └── js │ │ ├── capture.js │ │ ├── default.js │ │ └── legency.js └── templates │ ├── default.html │ └── legency.html ├── setup.py ├── test ├── pytest_Demo.py ├── report │ ├── API_Report.html │ ├── Default_Report.html │ ├── Legency_Report.html │ ├── PyTestReport.html │ └── Pytest_Report.html ├── unittest_Demo.py └── unittest_test.py └── theme └── default.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | **/__pycache__ 3 | test/*.log 4 | build 5 | PyTestReport.egg-info -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/README.md -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.1-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.1-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.1.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.2-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.2-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.2-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.2.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.3-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.3-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.3-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.3-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.3.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.4-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.4-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.4-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.4-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.4.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.5-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.5-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.5-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.5-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.5.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.6-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.6-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.6-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.6-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.6.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.7-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.7-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.7-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.7-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.7.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.9.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.9.2-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.9.2-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.9.2-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.9.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.9.2.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.9.3-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.9.3-py3-none-any.whl -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.9.3-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.9.3-py3.7.egg -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.9.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.9.3.tar.gz -------------------------------------------------------------------------------- /dist/PyTestReport-0.1.9.3.win32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/dist/PyTestReport-0.1.9.3.win32.zip -------------------------------------------------------------------------------- /pytestreport/HTMLTestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/HTMLTestRunner.py -------------------------------------------------------------------------------- /pytestreport/PyTestReportPlug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/PyTestReportPlug.py -------------------------------------------------------------------------------- /pytestreport/SendEmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/SendEmail.py -------------------------------------------------------------------------------- /pytestreport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/__init__.py -------------------------------------------------------------------------------- /pytestreport/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/api.py -------------------------------------------------------------------------------- /pytestreport/static/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/static/css/default.css -------------------------------------------------------------------------------- /pytestreport/static/css/legency.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/static/css/legency.css -------------------------------------------------------------------------------- /pytestreport/static/js/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/static/js/capture.js -------------------------------------------------------------------------------- /pytestreport/static/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/static/js/default.js -------------------------------------------------------------------------------- /pytestreport/static/js/legency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/static/js/legency.js -------------------------------------------------------------------------------- /pytestreport/templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/templates/default.html -------------------------------------------------------------------------------- /pytestreport/templates/legency.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/pytestreport/templates/legency.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/setup.py -------------------------------------------------------------------------------- /test/pytest_Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/test/pytest_Demo.py -------------------------------------------------------------------------------- /test/report/API_Report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/test/report/API_Report.html -------------------------------------------------------------------------------- /test/report/Default_Report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/test/report/Default_Report.html -------------------------------------------------------------------------------- /test/report/Legency_Report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/test/report/Legency_Report.html -------------------------------------------------------------------------------- /test/report/PyTestReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/test/report/PyTestReport.html -------------------------------------------------------------------------------- /test/report/Pytest_Report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/test/report/Pytest_Report.html -------------------------------------------------------------------------------- /test/unittest_Demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/test/unittest_Demo.py -------------------------------------------------------------------------------- /test/unittest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/test/unittest_test.py -------------------------------------------------------------------------------- /theme/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/five3/PyTestReport/HEAD/theme/default.png --------------------------------------------------------------------------------