mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 21:18:08 -05:00
check for SKIP on the regex and the if condition
This commit is contained in:
parent
d8b8d33660
commit
9922c23bd3
@ -33,7 +33,7 @@ type Test struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
regexStatus = regexp.MustCompile(`^--- (PASS|FAIL): (.+) \((\d+\.\d+) seconds\)$`)
|
regexStatus = regexp.MustCompile(`^--- (PASS|FAIL|SKIP): (.+) \((\d+\.\d+) seconds\)$`)
|
||||||
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+(.+)\s(\d+\.\d+)s$`)
|
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+(.+)\s(\d+\.\d+)s$`)
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -87,7 +87,7 @@ func Parse(r io.Reader) (*Report, error) {
|
|||||||
} else if test != nil {
|
} else if test != nil {
|
||||||
if matches := regexStatus.FindStringSubmatch(line); len(matches) == 4 {
|
if matches := regexStatus.FindStringSubmatch(line); len(matches) == 4 {
|
||||||
// test status
|
// test status
|
||||||
if matches[1] == "PASS" {
|
if matches[1] == "PASS" || matches[1] == "SKIP" {
|
||||||
test.Result = PASS
|
test.Result = PASS
|
||||||
} else {
|
} else {
|
||||||
test.Result = FAIL
|
test.Result = FAIL
|
||||||
|
Loading…
x
Reference in New Issue
Block a user