1
0
Fork 0

Use a separate make task to run tests verbose

This commit is contained in:
Gregory Eremin 2018-11-18 20:05:32 +01:00
parent 3cae959b1b
commit f61e0d6e84
1 changed files with 3 additions and 0 deletions

View File

@ -2,4 +2,7 @@ install:
dep ensure dep ensure
test: test:
go test ./{mysql,tests}
testv:
go test -v ./{mysql,tests} go test -v ./{mysql,tests}