File tree Expand file tree Collapse file tree 1 file changed +1
-20
lines changed Expand file tree Collapse file tree 1 file changed +1
-20
lines changed Original file line number Diff line number Diff line change 1
1
TEST? =$$(go list ./... |grep -v 'vendor' )
2
2
GOFMT_FILES? =$$(find . -name '*.go' |grep -v vendor )
3
- COVER_TEST? =$$(go list ./... |grep -v 'vendor' )
4
3
5
4
default : build
6
5
@@ -15,17 +14,6 @@ test: fmtcheck
15
14
testacc : fmtcheck
16
15
TF_ACC=1 go test $(TEST ) -v $(TESTARGS ) -timeout 120m
17
16
18
- testrace : fmtcheck
19
- TF_ACC= go test -race $(TEST ) $(TESTARGS )
20
-
21
- cover :
22
- @go tool cover 2> /dev/null; if [ $$ ? -eq 3 ]; then \
23
- go get -u golang.org/x/tools/cmd/cover; \
24
- fi
25
- go test $(COVER_TEST ) -coverprofile=coverage.out
26
- go tool cover -html=coverage.out
27
- rm coverage.out
28
-
29
17
vet :
30
18
@echo " go vet ."
31
19
@go vet $$(go list ./... | grep -v vendor/ ) ; if [ $$ ? -eq 1 ]; then \
@@ -47,12 +35,5 @@ errcheck:
47
35
vendor-status :
48
36
@govendor status
49
37
50
- test-compile : fmtcheck
51
- @if [ " $( TEST) " = " ./..." ]; then \
52
- echo " ERROR: Set TEST to a specific package. For example," ; \
53
- echo " make test-compile TEST=./builtin/providers/aws" ; \
54
- exit 1; \
55
- fi
56
- go test -c $(TEST ) $(TESTARGS )
38
+ .PHONY : build test testacc vet fmt fmtcheck errcheck vendor-status
57
39
58
- .PHONY : build test testacc testrace cover vet fmt fmtcheck errcheck vendor-status test-compile
You can’t perform that action at this time.
0 commit comments