From c9e8d98e375e4eca77be5ad137c93f2b720f338c Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Tue, 21 Jan 2014 16:37:00 +0400 Subject: [PATCH] Inlcude system tests in Travis CI and regular make all. --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ed560af6..e9c68705 100644 --- a/Makefile +++ b/Makefile @@ -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