-
-
Notifications
You must be signed in to change notification settings - Fork 503
/
commons-test.mk
65 lines (51 loc) · 1.38 KB
/
commons-test.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
GOBIN= $(GOPATH)/bin
define go_install
go install $(1)
endef
$(GOBIN)/golangci-lint:
$(call go_install,github.com/golangci/golangci-lint/cmd/[email protected])
$(GOBIN)/gotestsum:
$(call go_install,gotest.tools/gotestsum@latest)
$(GOBIN)/mockery:
$(call go_install,github.com/vektra/mockery/[email protected])
.PHONY: install
install: $(GOBIN)/golangci-lint $(GOBIN)/gotestsum $(GOBIN)/mockery
.PHONY: clean
clean:
rm $(GOBIN)/golangci-lint
rm $(GOBIN)/gotestsum
rm $(GOBIN)/mockery
.PHONY: dependencies-scan
dependencies-scan:
@echo ">> Scanning dependencies in $(CURDIR)..."
go list -json -m all | docker run --rm -i sonatypecommunity/nancy:latest sleuth --skip-update-check
.PHONY: lint
lint: $(GOBIN)/golangci-lint
golangci-lint run --out-format=colored-line-number --path-prefix=. --verbose -c $(ROOT_DIR)/.golangci.yml --fix
.PHONY: generate
generate: $(GOBIN)/mockery
go generate ./...
.PHONY: test-%
test-%: $(GOBIN)/gotestsum
@echo "Running $* tests..."
gotestsum \
--format short-verbose \
--rerun-fails=5 \
--packages="./..." \
--junitfile TEST-unit.xml \
-- \
-v \
-coverprofile=coverage.out \
-timeout=30m \
-race
.PHONY: tools
tools:
go mod download
.PHONY: test-tools
test-tools: $(GOBIN)/gotestsum
.PHONY: tidy
tidy:
go mod tidy
.PHONY: pre-commit
pre-commit: generate tidy lint