mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
21 lines
541 B
Python
21 lines
541 B
Python
"""
|
|
HttpRunner report
|
|
|
|
- summarize: aggregate test stat data to summary
|
|
- stringify: stringify summary, in order to dump json file and generate html report.
|
|
- html: render html report
|
|
"""
|
|
|
|
from httprunner.report.summarize import get_platform, aggregate_stat, get_summary
|
|
from httprunner.report.stringify import stringify_summary
|
|
from httprunner.report.html import HtmlTestResult, gen_html_report
|
|
|
|
__all__ = [
|
|
"get_platform",
|
|
"aggregate_stat",
|
|
"get_summary",
|
|
"stringify_summary",
|
|
"HtmlTestResult",
|
|
"gen_html_report"
|
|
]
|