11 lines
145 B
Makefile
11 lines
145 B
Makefile
|
.PHONY: build dep install test
|
||
|
|
||
|
test_setup:
|
||
|
cd _tests && vagrant up && cd -
|
||
|
|
||
|
test:
|
||
|
go test ./... -cover
|
||
|
|
||
|
testverbose:
|
||
|
go test ./... -v -cover
|