diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | Makefile | 4 |
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: @@ -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); \ |