diff options
| author | Zach Loafman <zml@google.com> | 2015-02-18 07:51:36 -0800 |
|---|---|---|
| committer | Zach Loafman <zml@google.com> | 2015-02-18 07:51:36 -0800 |
| commit | 3cb657fac08b3c302cb244066c69e73469ccafd1 (patch) | |
| tree | 054090722dde32ddd2384fbe4598ae3295b8a997 | |
| parent | 83e0629cedcf0fa400034ab154c72c2543b03d5f (diff) | |
Document current ways to run a single e2e
| -rw-r--r-- | development.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/development.md b/development.md index 3d05f71f..302f4af8 100644 --- a/development.md +++ b/development.md @@ -182,8 +182,11 @@ go run hack/e2e.go --pushup # Run all tests go run hack/e2e.go --test -# Run tests matching a glob. -go run hack/e2e.go --tests=... +# Run tests matching the regex "Pods.*env" +go run hack/e2e.go -v -test --test_args="--ginkgo.focus=Pods.*env" + +# Alternately, if you have the e2e cluster up and no desire to see the event stream, you can run ginkgo-e2e.sh directly: +hack/ginkgo-e2e.sh --ginkgo.focus=Pods.*env ``` ### Combining flags |
