Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update developer docs to use hack/ for e2e. #3776

Merged
merged 1 commit into from
Jan 24, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/devel/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,36 +152,36 @@ hack/e2e-test.sh

Pressing control-C should result in an orderly shutdown but if something goes wrong and you still have some VMs running you can force a cleanup with this command:
```
go run e2e.go --down
go run hack/e2e.go --down
```

### Flag options
See the flag definitions in `hack/e2e.go` for more options, such as reusing an existing cluster, here is an overview:

```sh
# Build binaries for testing
go run e2e.go --build
go run hack/e2e.go --build

# Create a fresh cluster. Deletes a cluster first, if it exists
go run e2e.go --up
go run hack/e2e.go --up

# Create a fresh cluster at a specific release version.
go run e2e.go --up --version=0.7.0
go run hack/e2e.go --up --version=0.7.0

# Test if a cluster is up.
go run e2e.go --isup
go run hack/e2e.go --isup

# Push code to an existing cluster
go run e2e.go --push
go run hack/e2e.go --push

# Push to an existing cluster, or bring up a cluster if it's down.
go run e2e.go --pushup
go run hack/e2e.go --pushup

# Run all tests
go run e2e.go --test
go run hack/e2e.go --test

# Run tests matching a glob.
go run e2e.go --tests=...
go run hack/e2e.go --tests=...
```

### Combining flags
Expand Down