Skip to content

Commit d6f6daf

Browse files
chore: revert makefile test changes
1 parent 1a8e92d commit d6f6daf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,17 @@ endif
121121
.PHONY: test-ci
122122
test-ci:
123123
ifdef cover
124-
$(GO) test -run "[^FLAKY]$$" -coverprofile=cover.out ./pkg/accesscontrol
124+
$(GO) test -run "[^FLAKY]$$" -coverprofile=cover.out ./...
125125
else
126-
$(GO) test -run "[^FLAKY]$$" ./pkg/accesscontrol
126+
$(GO) test -run "[^FLAKY]$$" ./...
127127
endif
128128

129129
.PHONY: test-ci-race
130130
test-ci-race:
131131
ifdef cover
132-
$(GO) test -race -run "[^FLAKY]$$" -coverprofile=cover.out ./pkg/accesscontrol
132+
$(GO) test -race -run "[^FLAKY]$$" -coverprofile=cover.out ./...
133133
else
134-
$(GO) test -race -run "[^FLAKY]$$" ./pkg/accesscontrol
134+
$(GO) test -race -run "[^FLAKY]$$" ./...
135135
endif
136136

137137
.PHONY: test-ci-flaky

0 commit comments

Comments
 (0)