From d10906e1f72aa590af7e761eee1bc824f9ef419e Mon Sep 17 00:00:00 2001 From: Yannis Zarkadas Date: Mon, 13 Jul 2020 15:46:36 +0300 Subject: [PATCH] e2e: Make sure Go's testing cache doesn't skip the test Github-PR: #31 Signed-off-by: Yannis Zarkadas Reviewed-by: Alex Pyrgiotis --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 79280d8e..58d74a67 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,8 @@ e2e: publish # Run E2E tests cd e2e/manifests/authservice/base && \ kustomize edit set image gcr.io/arrikto/kubeflow/oidc-authservice=$(IMG):$(TAG) - go test ./e2e -v + # Use -count=1 to skip Go's test cache + go test -v -count=1 ./e2e publish: docker-build docker-push