summaryrefslogtreecommitdiff
path: root/testing.md
diff options
context:
space:
mode:
authorTim Hockin <thockin@google.com>2016-04-13 23:30:15 -0700
committerTim Hockin <thockin@google.com>2016-05-08 20:30:37 -0700
commitf02a0dc5c12a0c24586bfd6d73820ee1a4551eaa (patch)
tree3489e578e8e73e0a21c823eb9d882141601999f1 /testing.md
parent1f7e8a462bccdcc4219d41d4ed94d024c66486b5 (diff)
Convert everything to use vendor/
Diffstat (limited to 'testing.md')
-rw-r--r--testing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing.md b/testing.md
index e415e442..72f1c328 100644
--- a/testing.md
+++ b/testing.md
@@ -84,10 +84,10 @@ hack/test-go.sh # Run all unit tests.
cd kubernetes
# Run all tests under pkg (requires client to be in $GOPATH/src/k8s.io)
-godep go test ./pkg/...
+go test ./pkg/...
# Run all tests in the pkg/api (but not subpackages)
-godep go test ./pkg/api
+go test ./pkg/api
```
### Stress running unit tests
@@ -135,7 +135,7 @@ To run benchmark tests, you'll typically use something like:
```sh
cd kubernetes
-godep go test ./pkg/apiserver -benchmem -run=XXX -bench=BenchmarkWatch
+go test ./pkg/apiserver -benchmem -run=XXX -bench=BenchmarkWatch
```
This will do the following: