Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
e2e tests: Increase the test timeout to 20m
Browse files Browse the repository at this point in the history
Signed-off-by: Suraj Deshmukh <suraj@kinvolk.io>
  • Loading branch information
surajssd committed Mar 27, 2020
1 parent 8e43143 commit b6dd1ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ endif

.PHONY: run-e2e-tests
run-e2e-tests:
KUBECONFIG=${kubeconfig} go test -mod=$(MOD) -tags="$(platform),e2e" -covermode=atomic -buildmode=exe -v ./test/...
KUBECONFIG=${kubeconfig} go test -timeout=20m -mod=$(MOD) -tags="$(platform),e2e" -covermode=atomic -buildmode=exe -v ./test/...
# Test if the metrics are actually being scraped
KUBECONFIG=${kubeconfig} PLATFORM=${platform} go test -mod=$(MOD) -tags="$(platform),poste2e" -covermode=atomic -buildmode=exe -v ./test/...
KUBECONFIG=${kubeconfig} PLATFORM=${platform} go test -timeout=20m -mod=$(MOD) -tags="$(platform),poste2e" -covermode=atomic -buildmode=exe -v ./test/...
# This is a test that should be run in the end to reduce the disruption to other tests because
# it will delete a node.
KUBECONFIG=${kubeconfig} go test -mod=$(MOD) -tags="$(platform),disruptivee2e" -covermode=atomic -buildmode=exe -v ./test/...
KUBECONFIG=${kubeconfig} go test -timeout=20m -mod=$(MOD) -tags="$(platform),disruptivee2e" -covermode=atomic -buildmode=exe -v ./test/...

.PHONY: all
all: build test
Expand Down

0 comments on commit b6dd1ff

Please sign in to comment.