I am running tests using ginkgo, and I am trying to skip two of my tests that are not applicable to my environment.
./_output/bin/e2e.test --ginkgo.focus="sig-network.*[Conformance]" --ginkgo.skip=".should delete a collection of services." --ginkgo.skip=".A set of valid responses are returned for both pod and service Proxy." --provider=aws --gce-zone=us-west-2a
This is not skipping both the test regexes. It is skipping only one of them. How can I skip both the conditions mentioned above.
- I have tried using
|
e2e.testand how does it pass through to ginkgo?