1, remove PyUnitReport dependency;
2, add built-in html report;
3, support pass in html report template, in Jinja2 format.
This commit is contained in:
debugtalk
2018-02-25 23:09:12 +08:00
parent 6557cb3420
commit 160218b1ed
11 changed files with 363 additions and 109 deletions

View File

@@ -10,7 +10,7 @@ with io.open("README.rst", encoding='utf-8') as f:
install_requires = [
"requests",
"PyYAML",
"PyUnitReport",
"Jinja2",
"har2case",
"colorama",
"colorlog"
@@ -27,7 +27,7 @@ setup(
license='MIT',
packages=find_packages(exclude=["examples", "tests", "tests.*"]),
package_data={
'httprunner': ['locustfile_template'],
'httprunner': ['locustfile_template', "templates/default_report_template.html"],
},
keywords='api test',
install_requires=install_requires,