Merge pull request #113 from prometheus/julius-travis-verbose-tests

Make Travis test runs verbose.
This commit is contained in:
juliusv 2013-03-28 10:37:30 -07:00
commit a4b528118d
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