├── .gitignore ├── CHANGELOG.md ├── CHANGELOG_zh.md ├── MANIFEST.in ├── README.md ├── idea.png ├── pywebreport ├── __init__.py ├── formatter.py ├── plugins │ ├── __init__.py │ ├── pytest │ │ ├── __init__.py │ │ ├── htmlreport.py │ │ └── plugin.py │ └── unittest │ │ ├── __init__.py │ │ └── htmlreport.py ├── reportor.py └── template │ ├── __init__.py │ ├── city.png │ ├── deploy.sh │ ├── gen.py │ ├── layouts.html │ ├── layouts │ ├── header.html │ ├── main.html │ ├── nav.html │ └── sidebar.html │ ├── pages │ ├── dashboard.html │ └── testsuite.html │ ├── report.css │ ├── src │ └── input.css │ └── tailwind.config.js ├── setup.py └── test ├── __init__.py └── testsuites ├── pytest ├── main.py ├── test_ddt.py ├── test_fail.py └── test_success.py └── unittest ├── __init__.py ├── main.py ├── test_ddt.py ├── test_fail.py └── test_success.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/CHANGELOG_zh.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include pywebreport/template * -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/README.md -------------------------------------------------------------------------------- /idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/idea.png -------------------------------------------------------------------------------- /pywebreport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/__init__.py -------------------------------------------------------------------------------- /pywebreport/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/formatter.py -------------------------------------------------------------------------------- /pywebreport/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/plugins/__init__.py -------------------------------------------------------------------------------- /pywebreport/plugins/pytest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/plugins/pytest/__init__.py -------------------------------------------------------------------------------- /pywebreport/plugins/pytest/htmlreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/plugins/pytest/htmlreport.py -------------------------------------------------------------------------------- /pywebreport/plugins/pytest/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/plugins/pytest/plugin.py -------------------------------------------------------------------------------- /pywebreport/plugins/unittest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/plugins/unittest/__init__.py -------------------------------------------------------------------------------- /pywebreport/plugins/unittest/htmlreport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/plugins/unittest/htmlreport.py -------------------------------------------------------------------------------- /pywebreport/reportor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/reportor.py -------------------------------------------------------------------------------- /pywebreport/template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/__init__.py -------------------------------------------------------------------------------- /pywebreport/template/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/city.png -------------------------------------------------------------------------------- /pywebreport/template/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/deploy.sh -------------------------------------------------------------------------------- /pywebreport/template/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/gen.py -------------------------------------------------------------------------------- /pywebreport/template/layouts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/layouts.html -------------------------------------------------------------------------------- /pywebreport/template/layouts/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/layouts/header.html -------------------------------------------------------------------------------- /pywebreport/template/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/layouts/main.html -------------------------------------------------------------------------------- /pywebreport/template/layouts/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/layouts/nav.html -------------------------------------------------------------------------------- /pywebreport/template/layouts/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/layouts/sidebar.html -------------------------------------------------------------------------------- /pywebreport/template/pages/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/pages/dashboard.html -------------------------------------------------------------------------------- /pywebreport/template/pages/testsuite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/pages/testsuite.html -------------------------------------------------------------------------------- /pywebreport/template/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/report.css -------------------------------------------------------------------------------- /pywebreport/template/src/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/src/input.css -------------------------------------------------------------------------------- /pywebreport/template/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/pywebreport/template/tailwind.config.js -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testsuites/pytest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/test/testsuites/pytest/main.py -------------------------------------------------------------------------------- /test/testsuites/pytest/test_ddt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/test/testsuites/pytest/test_ddt.py -------------------------------------------------------------------------------- /test/testsuites/pytest/test_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/test/testsuites/pytest/test_fail.py -------------------------------------------------------------------------------- /test/testsuites/pytest/test_success.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/test/testsuites/pytest/test_success.py -------------------------------------------------------------------------------- /test/testsuites/unittest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/testsuites/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/test/testsuites/unittest/main.py -------------------------------------------------------------------------------- /test/testsuites/unittest/test_ddt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/test/testsuites/unittest/test_ddt.py -------------------------------------------------------------------------------- /test/testsuites/unittest/test_fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/test/testsuites/unittest/test_fail.py -------------------------------------------------------------------------------- /test/testsuites/unittest/test_success.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongchin0821/pywebreport/HEAD/test/testsuites/unittest/test_success.py --------------------------------------------------------------------------------