summaryrefslogtreecommitdiff
path: root/contributors/guide/README.md
diff options
context:
space:
mode:
authoreduartua <eduartua@gmail.com>2019-01-30 12:55:10 -0600
committereduartua <eduartua@gmail.com>2019-01-30 12:55:10 -0600
commitaf988769d2eeb2dedb3373670aa3a9643c611064 (patch)
treed06cb9f5d55d3b4c81acc84fcb79f31de7636931 /contributors/guide/README.md
parent05e84cedf1d1e791bb8c9a153b3d3f7306420fe1 (diff)
e2e-test.md file moved to the new /devel/-sig-testing folder - URLs updated - tombstone files created
Diffstat (limited to 'contributors/guide/README.md')
-rw-r--r--contributors/guide/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/guide/README.md b/contributors/guide/README.md
index e053b949..2963d560 100644
--- a/contributors/guide/README.md
+++ b/contributors/guide/README.md
@@ -224,7 +224,7 @@ The location of the test code varies with type, as do the specifics of the envir
* Unit: These confirm that a particular function behaves as intended. Golang includes a native ability for unit testing via the [testing](https://golang.org/pkg/testing/) package. Unit test source code can be found adjacent to the corresponding source code within a given package. For example: functions defined in [kubernetes/cmd/kubeadm/app/util/version.go](https://git.k8s.io/kubernetes/cmd/kubeadm/app/util/version.go) will have unit tests in [kubernetes/cmd/kubeadm/app/util/version_test.go](https://git.k8s.io/kubernetes/cmd/kubeadm/app/util/version_test.go). These are easily run locally by any developer on any OS.
* Integration: These tests cover interactions of package components or interactions between kubernetes components and some other non-kubernetes system resource (eg: etcd). An example would be testing whether a piece of code can correctly store data to or retrieve data from etcd. Integration tests are stored in [kubernetes/test/integration/](https://git.k8s.io/kubernetes/test/integration). Running these can require the developer set up additional functionality on their development system.
-* End-to-end ("e2e"): These are broad tests of overall system behavior and coherence. These are more complicated as they require a functional kubernetes cluster built from the sources to be tested. A separate [document detailing e2e testing](/contributors/devel/e2e-tests.md) and test cases themselves can be found in [kubernetes/test/e2e/](https://git.k8s.io/kubernetes/test/e2e).
+* End-to-end ("e2e"): These are broad tests of overall system behavior and coherence. These are more complicated as they require a functional kubernetes cluster built from the sources to be tested. A separate [document detailing e2e testing](/contributors/devel/sig-testing/e2e-tests.md) and test cases themselves can be found in [kubernetes/test/e2e/](https://git.k8s.io/kubernetes/test/e2e).
* Conformance: These are a set of testcases, currently a subset of the integration/e2e tests, that the Architecture SIG has approved to define the core set of interoperable features that all Kubernetes deployments must support. For more information on Conformance tests please see the [Conformance Testing](/contributors/devel/conformance-tests.md) Document.
Continuous integration will run these tests either as pre-submits on PRs, post-submits against master/release branches, or both.