Skip to content

Commit

Permalink
Reduce the number of parallel tests
Browse files Browse the repository at this point in the history
  • Loading branch information
outscale-toa committed Mar 26, 2024
1 parent 8a206dd commit 2a7937c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ test-net: fmtcheck

.PHONY: test-vm
test-vm: fmtcheck
TF_ACC=1 go test $(TEST) -run=TestAccVM -count 1 -v -parallel 8 $(TESTARGS) -timeout 240m -cover
TF_ACC=1 go test $(TEST) -run=TestAccVM -count 1 -v -parallel 6 $(TESTARGS) -timeout 240m -cover

.PHONY: test-others
test-others: fmtcheck test-gen-cert
TF_ACC=1 go test $(TEST) -run=TestAccOthers -count 1 -v -parallel 8 $(TESTARGS) -timeout 240m -cover
TF_ACC=1 go test $(TEST) -run=TestAccOthers -count 1 -v -parallel 6 $(TESTARGS) -timeout 240m -cover

.PHONY: fmt
fmt:
Expand Down

0 comments on commit 2a7937c

Please sign in to comment.