remove -i flag of go test that disables tests

from go help test:

        -i
            Install packages that are dependencies of the test.
            Do not run the test.

This patch simply removes the -i.
This commit is contained in:
davidovich 2019-07-10 17:50:07 -04:00
parent 080f157c7f
commit 35ea3ae13f

View file

@ -28,7 +28,7 @@ install: build
test:
@echo ">> running all tests"
@go test -i $(PKGS)
@go test $(PKGS)
generate: embedmd
@echo ">> generating docs"