mirror of
https://github.com/42wim/matterbridge
synced 2024-11-07 09:20:23 +00:00
11 lines
189 B
Makefile
11 lines
189 B
Makefile
.PHONY: test
|
|
test:
|
|
go test -race -run=^Test -v
|
|
|
|
.PHONY: cover
|
|
cover:
|
|
go test -coverprofile=coverage.out -covermode=atomic
|
|
|
|
.PHONY: coverhtml
|
|
coverhtml:
|
|
go tool cover -html=coverage.out
|