Skip to content

Commit

Permalink
clarify that last owner label wins
Browse files Browse the repository at this point in the history
  • Loading branch information
onsi committed Jan 17, 2024
1 parent 8f3bd70 commit 732abbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reporters/junit_report.go
Expand Up @@ -116,7 +116,7 @@ type JUnitTestCase struct {
Status string `xml:"status,attr"`
// Time is the time in seconds to execute the spec - maps onto SpecReport.RunTime
Time float64 `xml:"time,attr"`
// Owner is the owner the spec - is set if a label matching Label("owner:X") is provided
// Owner is the owner the spec - is set if a label matching Label("owner:X") is provided. The last matching label is used as the owner, thereby allowing specs to override owners specified in container nodes.
Owner string `xml:"owner,attr,omitempty"`
//Skipped is populated with a message if the test was skipped or pending
Skipped *JUnitSkipped `xml:"skipped,omitempty"`
Expand Down

0 comments on commit 732abbc

Please sign in to comment.