Skip to content

Commit

Permalink
core: update -race flag
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0Vu committed Jul 21, 2023
1 parent 8395894 commit 9586768
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion genconfig/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lint:

.PHONY: test
test:
go test --race ./...
go test -race ./...

.PHONY: build
build:
Expand Down
2 changes: 1 addition & 1 deletion katzenmint/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ lint:

.PHONY: test
test:
go test --race ./...
go test -race ./...


.PHONY: setup
Expand Down
2 changes: 1 addition & 1 deletion plugin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lint:

.PHONY: test
test:
go test --race ./...
go test -race ./...

.PHONY: build
build:
Expand Down
2 changes: 1 addition & 1 deletion server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lint:

.PHONY: test
test:
go test --race -tags=$(GOTAGS) ./...
go test -race -tags=$(GOTAGS) ./...

.PHONY: build
build:
Expand Down

0 comments on commit 9586768

Please sign in to comment.