Skip to content

Commit 93efb97

Browse files
authored
Merge pull request #194 from davidz627/fix/skipDisruptive
Skip disruptive tests in E2E
2 parents 1043a0c + 29120df commit 93efb97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/k8s-integration/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func runTests(k8sDir string) error {
207207
}
208208
artifactsDir, _ := os.LookupEnv("ARTIFACTS")
209209
reportArg := fmt.Sprintf("--report-dir=%s", artifactsDir)
210-
testArgs := fmt.Sprintf("--test_args=--ginkgo.focus=CSI.*gcePD-external --ginkgo.skip=\\[Serial\\]|kubelet.*down %s", reportArg)
210+
testArgs := fmt.Sprintf("--test_args=--ginkgo.focus=CSI.*gcePD-external --ginkgo.skip=\\[Disruptive\\]|\\[Serial\\]|kubelet.*down %s", reportArg)
211211
cmd := exec.Command("go", "run", "hack/e2e.go",
212212
"--",
213213
"--check-version-skew=false",

0 commit comments

Comments
 (0)