Skip to content

Commit

Permalink
Expand e2e instructions.
Browse files Browse the repository at this point in the history
  • Loading branch information
brendandburns committed Dec 9, 2014
1 parent e1872b9 commit 1d031b7
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docs/devel/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1d031b7

Please sign in to comment.