mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-19 09:56:35 +00:00
9 lines
161 B
Makefile
9 lines
161 B
Makefile
test:
|
|
go install -race -v
|
|
go test -i -v
|
|
go test -race -timeout 30s -v .
|
|
|
|
coverage:
|
|
go test -coverprofile=coverage.out -v .
|
|
go tool cover -html=coverage.out
|