summaryrefslogtreecommitdiff
path: root/development.md
diff options
context:
space:
mode:
authorTamer Tas <contact@tmrts.com>2016-08-04 11:40:40 +0300
committerTamer Tas <contact@tmrts.com>2016-08-05 11:27:12 +0300
commite1e7e3a30b669c3d63d48704fd31217c656dd06f (patch)
treef3a028bfd10ed45955524ad80a601218e7c212ad /development.md
parentb3d157982654cc06894b11a202c77adcbab734b3 (diff)
Detail unit testing workflow
Include the information about testing that is found in `Makefile` comments of the testing targets
Diffstat (limited to 'development.md')
-rw-r--r--development.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/development.md b/development.md
index 3dc1a3c6..c7f810f4 100644
--- a/development.md
+++ b/development.md
@@ -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