We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44a6ece commit 506dab1Copy full SHA for 506dab1
.github/workflows/unittest.yml
@@ -24,10 +24,10 @@ jobs:
24
- run: go build ./...
25
- name: Run tests
26
if: matrix.os != 'ubuntu-latest'
27
- run: go test -race ./...
+ run: go test -tags=assert -race ./...
28
29
if: matrix.os == 'ubuntu-latest'
30
- run: go test -race -coverprofile=coverage.out ./...
+ run: go test -tags=assert -race -coverprofile=coverage.out ./...
31
- name: Run benchmark
32
33
run: make benchmark-ci
Makefile
@@ -1,6 +1,6 @@
1
.PHONY: test
2
test:
3
- go test -race ./...
+ go test -tags=assert -race ./...
4
5
.PHONY: lint
6
lint:
0 commit comments