File tree 1 file changed +2
-0
lines changed
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ type Tester struct {
53
53
SkipRegex string `desc:"Regular expression of jobs to skip."`
54
54
FocusRegex string `desc:"Regular expression of jobs to focus on."`
55
55
TestArgs string `desc:"A space-separated list of arguments to pass to node e2e test."`
56
+ LabelFilter string `desc:"Label filter arguments to be passed to ginkgo."`
56
57
BoskosAcquireTimeoutSeconds int `desc:"How long (in seconds) to hang on a request to Boskos to acquire a resource before erroring."`
57
58
BoskosHeartbeatIntervalSeconds int `desc:"How often (in seconds) to send a heartbeat to Boskos to hold the acquired resource. 0 means no heartbeat."`
58
59
BoskosLocation string `desc:"If set, manually specifies the location of the boskos server. If unset and boskos is needed"`
@@ -267,6 +268,7 @@ func (t *Tester) constructArgs() []string {
267
268
"USE_DOCKERIZED_BUILD=" + strconv .FormatBool (t .UseDockerizedBuild ),
268
269
"TARGET_BUILD_ARCH=" + t .TargetBuildArch ,
269
270
"TIMEOUT=" + t .Timeout .String (),
271
+ "LABEL_FILTER=" + t .LabelFilter ,
270
272
}
271
273
if t .RuntimeConfig != "" {
272
274
argsFromFlags = append (argsFromFlags , "RUNTIME_CONFIG=" + t .RuntimeConfig )
You can’t perform that action at this time.
0 commit comments