@@ -17,18 +17,18 @@ PACKAGES := $(shell go list ./... | grep -v integration)
1717
1818SKIP_LINT ?= 0
1919
20- .PHONY : build vet test refresh-fixtures clean clean-cov clean-fixtures lint run_fixtures sanitize fixtures godoc testint testunit testcov tidy
20+ .PHONY : build vet test refresh-fixtures clean clean-cov clean-fixtures lint run_fixtures sanitize fixtures godoc test-int test-unit test-smoke testcov tidy
2121
22- test : build lint testunit testint
22+ test : build lint test-unit test-int
2323
2424citest : lint test
2525
26- testunit :
27- go test -v $(PACKAGES ) $(ARGS )
28- cd test && make testunit
26+ test-unit :
27+ go test -v $(PACKAGES ) $(TEST_ARGS )
28+ cd test && make test-unit $( TEST_ARGS )
2929
30- testint :
31- cd test && make testint
30+ test-int :
31+ cd test && make test-int $( TEST_ARGS )
3232
3333testcov-func :
3434 @go test -v -coverprofile=" coverage.txt" . > /dev/null 2>&1
@@ -39,8 +39,8 @@ testcov-html:
3939 @go test -v -coverprofile=" coverage.txt" . > /dev/null 2>&1
4040 @go tool cover -html coverage.txt
4141
42- smoketest :
43- cd test && make smoketest
42+ test-smoke :
43+ cd test && make test-smoke
4444
4545build : vet lint
4646 go build ./...
@@ -77,7 +77,7 @@ run_fixtures:
7777 LINODE_API_VERSION=" v4beta" \
7878 LINODE_URL=" $( LINODE_URL) " \
7979 GO111MODULE=" on" \
80- go test --tags $(TEST_TAGS ) -timeout=$(TEST_TIMEOUT ) -v $(ARGS )
80+ go test --tags $(TEST_TAGS ) -timeout=$(TEST_TIMEOUT ) -v $(TEST_ARGS )
8181
8282sanitize :
8383 @echo " * Sanitizing fixtures"
0 commit comments