From 004cfe380d8222181ecc141135c245fb564c50d2 Mon Sep 17 00:00:00 2001 From: Andrew Keesler Date: Fri, 11 Sep 2020 10:29:21 -0400 Subject: [PATCH] doc/contributing.md: add a tiny blurb about integration tests Signed-off-by: Andrew Keesler --- doc/contributing.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/contributing.md b/doc/contributing.md index 6c8aa5b51..9286f55b9 100644 --- a/doc/contributing.md +++ b/doc/contributing.md @@ -61,7 +61,15 @@ docker build . ### Running Integration Tests -Details coming soon. +```bash +./hack/prepare-for-integration-tests.sh +source /tmp/integration-test-env +(cd test && go test -count 1 ./...) +``` + +The `./hack/prepare-for-integration-tests.sh` script will create a local +[`kind`](https://kind.sigs.k8s.io/) cluster on which the integration tests will +be run. ### Pre-commit Hooks