summaryrefslogtreecommitdiff
path: root/contributors/guide/github-workflow.md
diff options
context:
space:
mode:
authorKubernetes Prow Robot <k8s-ci-robot@users.noreply.github.com>2019-01-30 11:50:33 -0800
committerGitHub <noreply@github.com>2019-01-30 11:50:33 -0800
commit362bc1c406a604dbe6a56e60146a67fcce56d5cf (patch)
tree6592c8baa26a0ec129e25d8eb4fc597825355719 /contributors/guide/github-workflow.md
parent04f8eea1cf75f6bc0323217aabc81b99d4234bd8 (diff)
parent03190b4bedac819dbf80e70e1574ed0f43ab2cda (diff)
Merge pull request #3173 from eduartua/issue-3064-grouping-by-sig-testing
Grouping /devel files by SIGs - SIG Testing
Diffstat (limited to 'contributors/guide/github-workflow.md')
-rw-r--r--contributors/guide/github-workflow.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/contributors/guide/github-workflow.md b/contributors/guide/github-workflow.md
index 221a7921..cc1e7e8f 100644
--- a/contributors/guide/github-workflow.md
+++ b/contributors/guide/github-workflow.md
@@ -149,17 +149,17 @@ make test
make test WHAT=./pkg/api/helper GOFLAGS=-v
# Run integration tests, requires etcd
-# For more info, visit https://git.k8s.io/community/contributors/devel/testing.md#integration-tests
+# For more info, visit https://git.k8s.io/community/contributors/devel/sig-testing/testing.md#integration-tests
make test-integration
# Run e2e tests by building test binaries, turn up a test cluster, run all tests, and tear the cluster down
# Equivalent to: go run hack/e2e.go -- -v --build --up --test --down
# Note: running all e2e tests takes a LONG time! To run specific e2e tests, visit:
-# https://git.k8s.io/community/contributors/devel/e2e-tests.md#building-kubernetes-and-running-the-tests
+# https://git.k8s.io/community/contributors/devel/sig-testing/e2e-tests.md#building-kubernetes-and-running-the-tests
make test-e2e
```
-See the [testing guide](/contributors/devel/testing.md) and [end-to-end tests](/contributors/devel/e2e-tests.md)
+See the [testing guide](/contributors/devel/sig-testing/testing.md) and [end-to-end tests](/contributors/devel/sig-testing/e2e-tests.md)
for additional information and scenarios.
Run `make help` for additional information on these make targets.