Skip to content

Commit 05e052c

Browse files
committed
wip
1 parent 3842e2e commit 05e052c

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,11 @@ test:
1313
$(MAKE) docker.stop
1414

1515
test.ci:
16-
$(eval GO_VERSION := $(shell go version | cut -d " " -f 3 | cut -d. -f2))
1716
set -e; for dir in $(GO_MOD_DIRS); do \
18-
if echo "$${dir}" | grep -q "./example" && [ "$(GO_VERSION)" = "19" ]; then \
19-
echo "Skipping go test in $${dir} due to Go version 1.19 and dir contains ./example"; \
20-
continue; \
21-
fi; \
2217
echo "go test in $${dir}"; \
2318
(cd "$${dir}" && \
2419
go mod tidy -compat=1.18 && \
25-
go test ./... -short -race -v && \
26-
go test -v -coverprofile=coverage.txt -covermode=atomic ./... && \
20+
go test -coverprofile=coverage.txt -covermode=atomic ./... -race && \
2721
go vet); \
2822
done
2923
cd internal/customvet && go build .

0 commit comments

Comments
 (0)