Merge pull request #3222 from mattjmcnaughton/mattjmcnaughton/fix-broken-links-in-sig-testing

Fix broken links in devel/sig-testing
This commit is contained in:
Kubernetes Prow Robot 2019-02-06 14:14:25 -08:00 committed by GitHub
commit c6ab1ddb19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 3 additions and 3 deletions

View File

Before

Width:  |  Height:  |  Size: 398 KiB

After

Width:  |  Height:  |  Size: 398 KiB

View File

Before

Width:  |  Height:  |  Size: 366 KiB

After

Width:  |  Height:  |  Size: 366 KiB

View File

Before

Width:  |  Height:  |  Size: 364 KiB

After

Width:  |  Height:  |  Size: 364 KiB

View File

Before

Width:  |  Height:  |  Size: 354 KiB

After

Width:  |  Height:  |  Size: 354 KiB

View File

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 65 KiB

View File

Before

Width:  |  Height:  |  Size: 112 KiB

After

Width:  |  Height:  |  Size: 112 KiB

View File

Before

Width:  |  Height:  |  Size: 185 KiB

After

Width:  |  Height:  |  Size: 185 KiB

View File

@ -19,7 +19,7 @@
- [End-to-End tests](#end-to-end-tests)
This assumes you already read the [development guide](development.md) to
This assumes you already read the [development guide](../development.md) to
install go, godeps, and configure your git client. All command examples are
relative to the `kubernetes` root directory.
@ -41,7 +41,7 @@ passing, so it is often a good idea to make sure the e2e tests work as well.
- Tests using linux-specific features must be skipped or compiled out.
- Skipped is better, compiled out is required when it won't compile.
* Concurrent unit test runs must pass.
* See [coding conventions](../guide/coding-conventions.md).
* See [coding conventions](../../guide/coding-conventions.md).
### Run all unit tests
@ -166,7 +166,7 @@ is [table driven testing](https://github.com/golang/go/wiki/TableDrivenTests)
- Example: [TestNamespaceAuthorization](https://git.k8s.io/kubernetes/test/integration/auth/auth_test.go)
* Each test should create its own master, httpserver and config.
- Example: [TestPodUpdateActiveDeadlineSeconds](https://git.k8s.io/kubernetes/test/integration/pods/pods_test.go)
* See [coding conventions](coding-conventions.md).
* See [coding conventions](../../guide/coding-conventions.md).
### Install etcd dependency