mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 10:51:29 +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{
|
expectArgs: []string{
|
||||||
"ginkgobin", "--p",
|
"ginkgobin", "--p",
|
||||||
"--focus=", "--skip=[Serial]",
|
"--focus=", "--skip=\\[Serial\\]",
|
||||||
"--noColor=true", "testbin", "--",
|
"--noColor=true", "testbin", "--",
|
||||||
"--disable-log-dump", "--repo-root=/kubernetes",
|
"--disable-log-dump", "--repo-root=/kubernetes",
|
||||||
"--provider=", "--report-dir=", "--kubeconfig=",
|
"--provider=", "--report-dir=", "--kubeconfig=",
|
||||||
|
@ -54,7 +54,7 @@ const (
|
|||||||
extraArgsSeparaterEnvKey = "E2E_EXTRA_ARGS_SEP"
|
extraArgsSeparaterEnvKey = "E2E_EXTRA_ARGS_SEP"
|
||||||
|
|
||||||
defaultSkip = ""
|
defaultSkip = ""
|
||||||
defaultFocus = "[Conformance]"
|
defaultFocus = "\\[Conformance\\]"
|
||||||
defaultProvider = "local"
|
defaultProvider = "local"
|
||||||
defaultParallel = "1"
|
defaultParallel = "1"
|
||||||
defaultResultsDir = "/tmp/results"
|
defaultResultsDir = "/tmp/results"
|
||||||
@ -63,5 +63,5 @@ const (
|
|||||||
|
|
||||||
// serialTestsRegexp is the default skip value if running in parallel. Will not
|
// serialTestsRegexp is the default skip value if running in parallel. Will not
|
||||||
// override an explicit E2E_SKIP value.
|
// override an explicit E2E_SKIP value.
|
||||||
serialTestsRegexp = "[Serial]"
|
serialTestsRegexp = "\\[Serial\\]"
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user