We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30766bd commit 86ab628Copy full SHA for 86ab628
Makefile
@@ -45,12 +45,12 @@ unit-tests:
45
46
.PHONY: unit-tests-race
47
unit-tests-race:
48
- @export GORACE=history_size=7; go test -race -cover $(shell go list ./... | grep -v '/integration/')
+ @export GORACE=history_size=7; go test -race -cover $(shell go list ./... | grep -v '/integration/' | grep -v 'regression')
49
cd integration/nwo/; go test -cover ./...
50
51
.PHONY: unit-tests-regression
52
unit-tests-regression:
53
- @go test -cover $(shell go list ./... | grep -v '/integration/' | grep 'regression')
+ @go test -race -timeout 0 -cover $(shell go list ./... | grep -v '/integration/' | grep 'regression')
54
55
.PHONY: install-softhsm
56
install-softhsm:
0 commit comments