Skip to content

Commit 35b6dff

Browse files
talIguazGal Topper
authored and
Gal Topper
committed
discard test cache on make tests (#47)
1 parent 6ef96ab commit 35b6dff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ get:
1919

2020
.PHONY: test
2121
test: get
22-
go test -race -tags unit $(TOPLEVEL_DIRS)
22+
go test -race -tags unit -count 1 $(TOPLEVEL_DIRS)
2323

2424
.PHONY: integration
2525
integration: get
26-
go test -race -tags integration $(TOPLEVEL_DIRS) -p 1 # p=1 to force Go to run pkg tests serially.
26+
go test -race -tags integration -p 1 -count 1 $(TOPLEVEL_DIRS) # p=1 to force Go to run pkg tests serially.
2727

2828
.PHONY: build
2929
build: get

0 commit comments

Comments
 (0)