You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 10, 2020. It is now read-only.
Grover 0.1.16 introduced a change that causes additional <testsuites> tags to be nested inside the root <testsuites> tag.
Jenkins will only report tests in <testcase/> tags that are in nested in <testsuite> tags in the root <testsuites> tag. Nested <testsuites> are silently ignored. This comprises the majority of YUI's use of Grover.
(Examples can be found on the internal YUI dev-3.x component build. The regression occurred on build 240. The last correctly working use of Grover was on build 239. Compare the junit.xml artifacts on those builds.)
The text was updated successfully, but these errors were encountered:
The YUITest.TestRunner.getResults("XML") method appears to return nested <testsuites> because of the change to the results object from data[key] to data[name][key] when results has length !== 1.
This is a regression in Grover 0.1.16.
Grover 0.1.16 introduced a change that causes additional
<testsuites>
tags to be nested inside the root<testsuites>
tag.Jenkins will only report tests in
<testcase/>
tags that are in nested in<testsuite>
tags in the root<testsuites>
tag. Nested<testsuites>
are silently ignored. This comprises the majority of YUI's use of Grover.(Examples can be found on the internal YUI dev-3.x component build. The regression occurred on build 240. The last correctly working use of Grover was on build 239. Compare the
junit.xml
artifacts on those builds.)The text was updated successfully, but these errors were encountered: