Skip to content

Commit

Permalink
Detail unit testing workflow
Browse files Browse the repository at this point in the history
Include the information about testing that is found in `Makefile` comments of the testing targets
  • Loading branch information
tmrts committed Aug 5, 2016
1 parent b3d1579 commit e1e7e3a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions development.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,12 +325,13 @@ Three basic commands let you run unit, integration and/or e2e tests:

```sh
cd kubernetes
make test # Run unit tests
make test-integration # Run integration tests, requires etcd
go run hack/e2e.go -v --build --up --test --down # Run e2e tests
make test # Run every unit test
make test WHAT=pkg/util/cache GOFLAGS=-v # Run tests of a package verbosely
make test-integration # Run integration tests, requires etcd
make test-e2e # Run e2e tests
```

See the [testing guide](testing.md) for additional information and scenarios.
See the [testing guide](testing.md) and [end-to-end tests](e2e-tests.md) for additional information and scenarios.

## Regenerating the CLI documentation

Expand Down

0 comments on commit e1e7e3a

Please sign in to comment.