Skip to content

Commit c4f2284

Browse files
authored
Merge pull request #3509 from michal-franc/test-documentation-fixess
Updating e2e tests instructions
2 parents d69fb28 + 5b18f22 commit c4f2284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: docs/contributors/build_guide.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ export KUBERNETES_CONFORMANCE_TEST=y
8383
```
8484
* Run the tests (from the k8s repo):
8585
```shell
86-
go run hack/e2e.go -v --test --test_args="--ginkgo.focus=\[Conformance\]" --check_version_skew=false --check_node_count=false
86+
go run hack/e2e.go -v --test --test_args="--ginkgo.focus=\[Conformance\]" --check-version-skew=false
8787
```
8888

8989
To run a specific conformance test, you can use the `ginkgo.focus` flag to filter the set using a regular expression.
9090
The `hack/e2e.go` wrapper and the `e2e.sh` wrappers have a little trouble with quoting spaces though, so use the `\s` regular expression character instead.
9191
For example, to run the test `should update annotations on modification [Conformance]`, use following command:
9292

9393
```shell
94-
go run hack/e2e.go -v --test --test_args="--ginkgo.focus=should\supdate\sannotations\son\smodification" --check_version_skew=false --check_node_count=false
94+
go run hack/e2e.go -v --test --test_args="--ginkgo.focus=should\supdate\sannotations\son\smodification" --check-version-skew=false
9595
```

0 commit comments

Comments
 (0)