We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8538d48 commit a70ac8dCopy full SHA for a70ac8d
test/k8s-integration/filter-junit.go
@@ -32,8 +32,12 @@ import (
32
* represent all fields that we want to be passed through. It's therefore
33
* not a complete solution, but good enough for Ginkgo + Spyglass.
34
*/
35
+
36
+type TestSuites struct {
37
+ XMLName string `xml:"testsuites"`
38
+ TestSuite []TestSuite `xml:"testsuite"`
39
+}
40
type TestSuite struct {
- XMLName string `xml:"testsuite"`
41
TestCases []TestCase `xml:"testcase"`
42
}
43
0 commit comments