Skip to content

Commit 86ab628

Browse files
committed
makefile improvements
Signed-off-by: Angelo De Caro <adc@zurich.ibm.com>
1 parent 30766bd commit 86ab628

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ unit-tests:
4545

4646
.PHONY: unit-tests-race
4747
unit-tests-race:
48-
@export GORACE=history_size=7; go test -race -cover $(shell go list ./... | grep -v '/integration/')
48+
@export GORACE=history_size=7; go test -race -cover $(shell go list ./... | grep -v '/integration/' | grep -v 'regression')
4949
cd integration/nwo/; go test -cover ./...
5050

5151
.PHONY: unit-tests-regression
5252
unit-tests-regression:
53-
@go test -cover $(shell go list ./... | grep -v '/integration/' | grep 'regression')
53+
@go test -race -timeout 0 -cover $(shell go list ./... | grep -v '/integration/' | grep 'regression')
5454

5555
.PHONY: install-softhsm
5656
install-softhsm:

0 commit comments

Comments
 (0)