File: Makefile

package info (click to toggle)
golang-github-teambition-rrule-go 1.8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: makefile: 10
file content (10 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
test:
	go test --race

cover:
	rm -f *.coverprofile
	go test -coverprofile=rrule.coverprofile
	go tool cover -html=rrule.coverprofile
	rm -f *.coverprofile

.PHONY: test cover