Inlcude system tests in Travis CI and regular make all.

This commit is contained in:
Andrey Smirnov
2014-01-21 16:37:00 +04:00
parent 1728691462
commit c9e8d98e37

View File

@@ -16,7 +16,7 @@ TRAVIS_TARGET=test
PREPARE_LIST=
endif
all: test check
all: test check system-test
prepare: $(PREPARE_LIST)
go get -d -v ./...
@@ -43,7 +43,10 @@ check:
go tool vet -all=true .
golint .
travis: $(TRAVIS_TARGET)
system-test:
python system/run.py
travis: $(TRAVIS_TARGET) system-test
test:
go test -v ./... -gocheck.v=true