mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -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 (
|
||||
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$`)
|
||||
)
|
||||
|
||||
@ -87,7 +87,7 @@ func Parse(r io.Reader) (*Report, error) {
|
||||
} else if test != nil {
|
||||
if matches := regexStatus.FindStringSubmatch(line); len(matches) == 4 {
|
||||
// test status
|
||||
if matches[1] == "PASS" {
|
||||
if matches[1] == "PASS" || matches[1] == "SKIP" {
|
||||
test.Result = PASS
|
||||
} else {
|
||||
test.Result = FAIL
|
||||
|
Loading…
x
Reference in New Issue
Block a user