diff options
| author | Patrick Ohly <patrick.ohly@intel.com> | 2018-03-01 13:05:07 +0100 |
|---|---|---|
| committer | Patrick Ohly <patrick.ohly@intel.com> | 2018-03-01 13:05:07 +0100 |
| commit | fd4a29d08d0d826d672bc7221dbc11b9854d6a53 (patch) | |
| tree | 7ddfe71847f1d082acac271a40ac8b96b99c331a | |
| parent | 1dfe1965955caeadb3ad845b0d22fbdecd33f862 (diff) | |
e2e-tests: Fix ginkgo.focus example
The extra quotation marks around "Service" are preserved by e2e.go and
e2e.sh and thus cause Ginkgo to skip all tests. It's safe to only
quote just the parameter value for e2e.go, so for example this works
despite the special character:
--test_args="--ginkgo.focus=Secrets|Secrets"
| -rw-r--r-- | contributors/devel/e2e-tests.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/devel/e2e-tests.md b/contributors/devel/e2e-tests.md index 5e47f6d5..a70d2c08 100644 --- a/contributors/devel/e2e-tests.md +++ b/contributors/devel/e2e-tests.md @@ -427,7 +427,7 @@ go run hack/e2e.go -- --provider=local -v --test To control the tests that are run: ```sh -go run hack/e2e.go -- --provider=local -v --test --test_args="--ginkgo.focus=\"Secrets\"" +go run hack/e2e.go -- --provider=local -v --test --test_args="--ginkgo.focus=Secrets" ``` ### Version-skewed and upgrade testing |
