mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* move mattes migrations to migratex * changes format of migrations to migratex format * updates test runner to use new interface (double checked this with printlns, the tests go fully down and then up, and work on pg/mysql) * remove mattes/migrate * update tests from deps * update readme * fix other file extensions
16 lines
245 B
Makefile
16 lines
245 B
Makefile
.PHONY: build test bench vet coverage
|
|
|
|
build: vet bench
|
|
|
|
test:
|
|
go test -v -cover -race
|
|
|
|
bench:
|
|
go test -v -cover -race -test.bench=. -test.benchmem
|
|
|
|
vet:
|
|
go vet
|
|
|
|
coverage:
|
|
go test -coverprofile=c.out && go tool cover -html=c.out && rm c.out
|