aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rw-r--r--Makefile4
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 492f6f3..22c6629 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,7 @@
language: go
go:
- - 1.7
+ - 1.8
- tip
env:
diff --git a/Makefile b/Makefile
index 8b1de74..d3e7fdc 100644
--- a/Makefile
+++ b/Makefile
@@ -31,11 +31,11 @@ build-git:
fi
test:
- cd $(WORKDIR); \
+ @cd $(WORKDIR); \
$(GOTEST) ./...
test-coverage:
- cd $(WORKDIR); \
+ @cd $(WORKDIR); \
echo "" > $(COVERAGE_REPORT); \
for dir in `find . -name "*.go" | grep -o '.*/' | sort | uniq`; do \
$(GOTEST) $$dir -coverprofile=$(COVERAGE_PROFILE) -covermode=$(COVERAGE_MODE); \