File: Makefile

package info (click to toggle)
kubecolor 0.0.9-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 320 kB
  • sloc: makefile: 13
file content (11 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: testshort
testshort:
	go test -timeout 30s -count=1 ./... -test.short

.PHONY: coverage
coverage:
	go test -timeout 30s -count=1 ./... -test.short -coverprofile=coverage.txt

.PHONY: e2etest
e2etest:
	go test -timeout 30s -count=1 ./e2etest -v