summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Blecker <admin@toph.ca>2017-08-05 10:32:36 -0700
committerGitHub <noreply@github.com>2017-08-05 10:32:36 -0700
commitce1d55e3cba7425235bb52a3d13f15aa08ddc876 (patch)
tree38adb7759a27c3585cb956b0ea2427d3d3bd9d84
parenta17c0ecfc2ec7f02eea20e151c8b114c32965251 (diff)
parent8834e692506c657f6b31ef94970114230e98bdaa (diff)
Merge pull request #879 from clairew/update-development-guide
Update Development Guide - fixed typo for running tests
-rw-r--r--contributors/devel/development.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors/devel/development.md b/contributors/devel/development.md
index 14a50d59..7cd8ee26 100644
--- a/contributors/devel/development.md
+++ b/contributors/devel/development.md
@@ -294,7 +294,7 @@ cd $working_dir/kubernetes
# for each failed verification. For example:
# hack/update-gofmt.sh (to make sure all files are correctly formatted, usually needed when you add new files)
# hack/update-bazel.sh (to update bazel build related files, usually needed when you add or remove imports)
-make verify
+make verify
# Alternatively, run all update scripts to avoid fixing verification failures one by one.
make update
@@ -303,7 +303,7 @@ make update
make test
# Run package tests verbosely
-make test WHAT=pkg/util/cache GOFLAGS=-v
+make test WHAT=./pkg/api/helper GOFLAGS=-v
# Run integration tests, requires etcd
# For more info, visit https://github.com/kubernetes/community/blob/master/contributors/devel/testing.md#integration-tests