summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Li <tonyli.lives@gmail.com>2017-02-16 17:25:05 -0800
committerTony Li <tonyli.lives@gmail.com>2017-02-16 17:25:05 -0800
commit64c84cc90d79f9e06c5dac6ac9dc62d9dc6ebfec (patch)
tree33e1e581cf55c39e74b4c0901b0857c2896eaf01
parent89bebcf12e1e1b1dd48b2090cb6d5ddf9d9fd7b5 (diff)
fix -- separators
-rw-r--r--contributors/devel/e2e-tests.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors/devel/e2e-tests.md b/contributors/devel/e2e-tests.md
index 6f787673..91ec20dc 100644
--- a/contributors/devel/e2e-tests.md
+++ b/contributors/devel/e2e-tests.md
@@ -101,10 +101,10 @@ go run hack/e2e.go -- -v --test --test_args="--ginkgo.focus=\[Feature:Performanc
go run hack/e2e.go -- -v --test --test_args="--ginkgo.skip=Pods.*env"
# Run tests in parallel, skip any that must be run serially
-GINKGO_PARALLEL=y go run hack/e2e.go --v --test --test_args="--ginkgo.skip=\[Serial\]"
+GINKGO_PARALLEL=y go run hack/e2e.go -- -v --test --test_args="--ginkgo.skip=\[Serial\]"
# Run tests in parallel, skip any that must be run serially and keep the test namespace if test failed
-GINKGO_PARALLEL=y go run hack/e2e.go --v --test --test_args="--ginkgo.skip=\[Serial\] --delete-namespace-on-failure=false"
+GINKGO_PARALLEL=y go run hack/e2e.go -- -v --test --test_args="--ginkgo.skip=\[Serial\] --delete-namespace-on-failure=false"
# Flags can be combined, and their actions will take place in this order:
# --build, --up, --test, --down