File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -121,17 +121,17 @@ endif
121121.PHONY : test-ci
122122test-ci :
123123ifdef cover
124- $(GO) test -run "[^FLAKY]$$" -coverprofile=cover.out ./pkg/accesscontrol
124+ $(GO) test -run "[^FLAKY]$$" -coverprofile=cover.out ./...
125125else
126- $(GO) test -run "[^FLAKY]$$" ./pkg/accesscontrol
126+ $(GO) test -run "[^FLAKY]$$" ./...
127127endif
128128
129129.PHONY : test-ci-race
130130test-ci-race :
131131ifdef cover
132- $(GO) test -race -run "[^FLAKY]$$" -coverprofile=cover.out ./pkg/accesscontrol
132+ $(GO) test -race -run "[^FLAKY]$$" -coverprofile=cover.out ./...
133133else
134- $(GO) test -race -run "[^FLAKY]$$" ./pkg/accesscontrol
134+ $(GO) test -race -run "[^FLAKY]$$" ./...
135135endif
136136
137137.PHONY : test-ci-flaky
You can’t perform that action at this time.
0 commit comments