diff options
| author | Brendan Burns <bburns@google.com> | 2014-12-08 16:01:35 -0800 |
|---|---|---|
| committer | Brendan Burns <bburns@google.com> | 2014-12-08 16:01:35 -0800 |
| commit | e95c87269a04c1d9ac0ae1bd87fdfa1ae39184a7 (patch) | |
| tree | 5e626c2368b96737d6c96d69dbab3bd58efc2da0 | |
| parent | 397e99fc2120ecd698696eb98b0dbc3019874a72 (diff) | |
Expand e2e instructions.
| -rw-r--r-- | development.md | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/development.md b/development.md index 3b831ef4..14a4df87 100644 --- a/development.md +++ b/development.md @@ -115,7 +115,24 @@ Pressing control-C should result in an orderly shutdown but if something goes wr go run e2e.go --down ``` -See the flag definitions in `hack/e2e.go` for more options, such as reusing an existing cluster. +See the flag definitions in `hack/e2e.go` for more options, such as reusing an existing cluster, here is an overview: + +```sh +# Create a fresh cluster. Deletes a cluster first, if it exists +go run e2e.go --up + +# Test if a cluster is up. +go run e2e.go --isup + +# Push code to an existing cluster +go run e2e.go --push + +# Run all tests +go run e2e.go --test + +# Run tests matching a glob. +go run e2e.go --tests=... +``` ## Testing out flaky tests [Instructions here](docs/devel/flaky-tests.md) |
