From d7499781e12ea97a5c5eff38d0f136bdfcb61d05 Mon Sep 17 00:00:00 2001 From: Tamer Tas Date: Thu, 4 Aug 2016 11:40:40 +0300 Subject: [PATCH] Detail unit testing workflow Include the information about testing that is found in `Makefile` comments of the testing targets --- docs/devel/development.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/devel/development.md b/docs/devel/development.md index 3dc1a3c6e0a..c7f810f4c82 100644 --- a/docs/devel/development.md +++ b/docs/devel/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