refactor report: split test suite to separate tables

This commit is contained in:
debugtalk
2018-07-19 15:15:09 +08:00
parent 1f2e0d312a
commit 95db6f22dd
11 changed files with 158 additions and 121 deletions

View File

@@ -88,7 +88,9 @@ def main_hrun():
)
summary = runner.summary
print_output(summary["output"])
for suite_summary in summary["details"]:
print_output(suite_summary["output"])
return 0 if summary["success"] else 1
def main_locust():