mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-20 10:20:51 +00:00
Merge pull request #88641 from antoninbas/fix-regex-in-conformance-tests-runner
Fix default regular expressions in conformance tests runner
This commit is contained in:
commit
f8ff8f4420
@ -74,7 +74,7 @@ func TestGetCmd(t *testing.T) {
|
||||
},
|
||||
expectArgs: []string{
|
||||
"ginkgobin", "--p",
|
||||
"--focus=", "--skip=[Serial]",
|
||||
"--focus=", "--skip=\\[Serial\\]",
|
||||
"--noColor=true", "testbin", "--",
|
||||
"--disable-log-dump", "--repo-root=/kubernetes",
|
||||
"--provider=", "--report-dir=", "--kubeconfig=",
|
||||
|
@ -54,7 +54,7 @@ const (
|
||||
extraArgsSeparaterEnvKey = "E2E_EXTRA_ARGS_SEP"
|
||||
|
||||
defaultSkip = ""
|
||||
defaultFocus = "[Conformance]"
|
||||
defaultFocus = "\\[Conformance\\]"
|
||||
defaultProvider = "local"
|
||||
defaultParallel = "1"
|
||||
defaultResultsDir = "/tmp/results"
|
||||
@ -63,5 +63,5 @@ const (
|
||||
|
||||
// serialTestsRegexp is the default skip value if running in parallel. Will not
|
||||
// override an explicit E2E_SKIP value.
|
||||
serialTestsRegexp = "[Serial]"
|
||||
serialTestsRegexp = "\\[Serial\\]"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user