mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00

- Use single regex for package result line - Add capturing of package build failure output
15 lines
404 B
Plaintext
15 lines
404 B
Plaintext
# package/name/failing1
|
|
failing1/failing_test.go:15: undefined: x
|
|
# package/name/failing2
|
|
failing2/another_failing_test.go:20: undefined: y
|
|
=== RUN TestA
|
|
--- PASS: TestA (0.10 seconds)
|
|
PASS
|
|
ok package/name/passing1 0.100s
|
|
=== RUN TestB
|
|
--- PASS: TestB (0.10 seconds)
|
|
PASS
|
|
ok package/name/passing2 0.100s
|
|
FAIL package/name/failing1 [build failed]
|
|
FAIL package/name/failing2 [build failed]
|