Skip to content

Commit

Permalink
Increase the unittest timeout to 20m from the default 10m
Browse files Browse the repository at this point in the history
It regularly times out in CI. Also remove the dependency on `build`,
unittests do not need any binaries built.
  • Loading branch information
alvaroaleman committed Aug 4, 2022
1 parent dfff72a commit 9279ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ app-sre-saas-template: hypershift

# Run tests
.PHONY: test
test: build
$(GO) test -race -count=25 ./... -coverprofile cover.out
test:
$(GO) test -race -count=25 -timeout=20m ./... -coverprofile cover.out

.PHONY: e2e
e2e:
Expand Down

0 comments on commit 9279ed4

Please sign in to comment.