Run one test at a time (#2063)
Running in parallel could fail if one of the test changes the ConfigMap
This commit is contained in:
parent
a786c1ec4e
commit
42c7111259
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -160,7 +160,7 @@ e2e-image: sub-container-amd64
|
|||
.PHONY: e2e-test
|
||||
e2e-test:
|
||||
@go test -o e2e-tests -c ./test/e2e
|
||||
@KUBECONFIG=${HOME}/.kube/config INGRESSNGINXCONFIG=${HOME}/.kube/config ./e2e-tests
|
||||
@KUBECONFIG=${HOME}/.kube/config INGRESSNGINXCONFIG=${HOME}/.kube/config ./e2e-tests -test.parallel 1
|
||||
|
||||
.PHONY: cover
|
||||
cover:
|
||||
|
|
Loading…
Reference in a new issue