1
0
Fork 0
mirror of https://github.com/Luzifer/aoc2019.git synced 2024-10-18 11:14:19 +00:00
aoc2019/Makefile

7 lines
170 B
Makefile
Raw Normal View History

default: fulltest
fulltest:
mkdir -p cover
go test -cover -coverprofile ./cover/cover.profile -v *.go
go tool cover -html ./cover/cover.profile -o ./cover/index.html