summaryrefslogtreecommitdiff
path: root/contributors/guide
diff options
context:
space:
mode:
authoreduartua <eduartua@gmail.com>2019-01-30 13:26:54 -0600
committereduartua <eduartua@gmail.com>2019-01-30 13:26:54 -0600
commit06a2a2f6867baf35c4b35fcccef872482938854f (patch)
tree850b05653d90337da5c7ceae6f093a52b40b1e9c /contributors/guide
parent15f4ab746981d38ad4ef33ab85ca50613e44e821 (diff)
file testing.md moved to the new folder /devel/sig-testing - URLs updated - tombstone file created
Diffstat (limited to 'contributors/guide')
-rw-r--r--contributors/guide/README.md2
-rw-r--r--contributors/guide/coding-conventions.md2
-rw-r--r--contributors/guide/github-workflow.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/contributors/guide/README.md b/contributors/guide/README.md
index 2963d560..5af35566 100644
--- a/contributors/guide/README.md
+++ b/contributors/guide/README.md
@@ -217,7 +217,7 @@ When reviewing PRs from others [The Gentle Art of Patch Review](http://sage.thes
## Testing
Testing is the responsibility of all contributors and is in part owned by all SIGss, but is also coordinated by [sig-testing](/sig-testing).
-Refer to the [Testing Guide](/contributors/devel/testing.md) for more information.
+Refer to the [Testing Guide](/contributors/devel/sig-testing/testing.md) for more information.
There are multiple types of tests.
The location of the test code varies with type, as do the specifics of the environment needed to successfully run the test:
diff --git a/contributors/guide/coding-conventions.md b/contributors/guide/coding-conventions.md
index 53a45b65..c424b9d8 100644
--- a/contributors/guide/coding-conventions.md
+++ b/contributors/guide/coding-conventions.md
@@ -86,7 +86,7 @@ required when your code does not compile on Windows).
asynchronous thing to happen (e.g. wait for 1 seconds and expect a Pod to be
running). Wait and retry instead.
- - See the [testing guide](/contributors/devel/testing.md) for additional testing advice.
+ - See the [testing guide](/contributors/devel/sig-testing/testing.md) for additional testing advice.
## Directory and file conventions
diff --git a/contributors/guide/github-workflow.md b/contributors/guide/github-workflow.md
index a50643f0..cc1e7e8f 100644
--- a/contributors/guide/github-workflow.md
+++ b/contributors/guide/github-workflow.md
@@ -149,7 +149,7 @@ 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