diff options
| author | Yu-Ju Hong <yjhong@google.com> | 2015-03-17 12:30:47 -0700 |
|---|---|---|
| committer | Yu-Ju Hong <yjhong@google.com> | 2015-03-17 12:32:34 -0700 |
| commit | 9786c3c7634b5b6a54fcf9258660ae36c694d8d2 (patch) | |
| tree | a9d2e6246c26f7d4c65abdb56f7e55b1fd1a00a6 /development.md | |
| parent | 31e8d2b80e0f30f632a1c56f72decd629c54a8cd (diff) | |
Add -v to `go run hack/e2e.go -ctl` commands
Diffstat (limited to 'development.md')
| -rw-r--r-- | development.md | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/development.md b/development.md index 7eccbcc8..ef7c7ce8 100644 --- a/development.md +++ b/development.md @@ -215,15 +215,16 @@ hack/ginkgo-e2e.sh --ginkgo.focus=Pods.*env # Flags can be combined, and their actions will take place in this order: # -build, -push|-up|-pushup, -test|-tests=..., -down # e.g.: -go run e2e.go -build -pushup -test -down +go run hack/e2e.go -build -pushup -test -down # -v (verbose) can be added if you want streaming output instead of only # seeing the output of failed commands. # -ctl can be used to quickly call kubectl against your e2e cluster. Useful for -# cleaning up after a failed test or viewing logs. -go run e2e.go -ctl='get events' -go run e2e.go -ctl='delete pod foobar' +# cleaning up after a failed test or viewing logs. Use -v to avoid supressing +# kubectl output. +go run hack/e2e.go -v -ctl='get events' +go run hack/e2e.go -v -ctl='delete pod foobar' ``` ## Testing out flaky tests |
