Skip to content

Commit

Permalink
Don't run tests in parallel in kind (knative#12361)
Browse files Browse the repository at this point in the history
* Don't run tests in parallel in kind

* Bump timeout
  • Loading branch information
markusthoemmes authored Nov 29, 2021
1 parent adc6d24 commit a7a9420
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,6 @@ jobs:
# Exclude the control-plane node, which doesn't seem to expose the nodeport service.
IPS=( $(kubectl get nodes -lkubernetes.io/hostname!=kind-control-plane -ojsonpath='{.items[*].status.addresses[?(@.type=="InternalIP")].address}') )
# Run the tests tagged as e2e on the KinD cluster.
go test -race -count=1 -timeout=20m -tags=e2e ${{ matrix.test-suite }} \
--ingressendpoint="${IPS[0]}" \
--enable-alpha --enable-beta
go test -race -count=1 -parallel=1 -timeout=30m -tags=e2e ${{ matrix.test-suite }} \
--ingressendpoint="${IPS[0]}" \
--enable-alpha --enable-beta

0 comments on commit a7a9420

Please sign in to comment.