Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change generate_json_report to parse root <testsuites> tag
On August 15th, `pytest` released version 5.1.0 https://pypi.org/project/pytest/#history This version adds a new root `<testsuites>` tag. See pytest-dev/pytest#5477 ```xml <testsuites> <testsuite errors="0" failures="18" hostname="3a266349df18" name="pytest" skipped="0" tests="30" time="13427.235" timestamp="2019-08-23T04:05:15.798369"> ... ``` ```xml <testsuite errors="204" failures="9" name="pytest" skipped="0" tests="793" time="947565.5930000005"> ... ``` This patch parses that tag properly. Signed-off-by: Sean Smith <[email protected]>
- Loading branch information