Make Travis test runs verbose.

This commit is contained in:
Julius Volz 2013-03-28 18:17:50 +01:00
parent 8622df50ae
commit 8b91bffa1d
2 changed files with 3 additions and 1 deletions

View file

@ -16,7 +16,7 @@ TEST_ARTIFACTS = prometheus prometheus.build search_index
all: test
test: build
go test ./...
go test ./... $(GO_TEST_FLAGS)
build:
$(MAKE) -C model

View file

@ -28,6 +28,8 @@ export LDFLAGS := $(LDFLAGS) -L$(OVERLAY_ROOT)/lib
export CGO_CFLAGS := $(CFLAGS) -lsnappy
export CGO_LDFLAGS := $(LDFLAGS)
export GO_TEST_FLAGS := "-v"
GO_GET := go get -u -v -x
APT_GET_INSTALL := sudo apt-get install -y
WGET := wget -c