summaryrefslogtreecommitdiff
path: root/vendor/github.com/Masterminds/sprig/v3/Makefile
blob: 78d409cde2c5e4f3d5a86c7b5dcd158a4d247ef6 (plain)
1
2
3
4
5
6
7
8
9
.PHONY: test
test:
	@echo "==> Running tests"
	GO111MODULE=on go test -v

.PHONY: test-cover
test-cover:
	@echo "==> Running Tests with coverage"
	GO111MODULE=on go test -cover .