From 8b91bffa1da0db2e463dc0136f49fd1c3c25908e Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Thu, 28 Mar 2013 18:17:50 +0100 Subject: [PATCH] Make Travis test runs verbose. --- Makefile | 2 +- Makefile.TRAVIS | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e634862405..376d52e871 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/Makefile.TRAVIS b/Makefile.TRAVIS index 74402dcdde..c802995186 100644 --- a/Makefile.TRAVIS +++ b/Makefile.TRAVIS @@ -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