aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-09-29 23:27:54 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-09-29 23:54:52 +0200
commit0c7fdeb11e353c0c444890f589013df9d531c388 (patch)
treed51e0e07a6c28765f61f2f9ef738d70d135f82ca /Makefile
parent62349fea00d2f5b5f2bd2c39e2f6052aa6ef6b35 (diff)
downloadgo-git-0c7fdeb11e353c0c444890f589013df9d531c388.tar.gz
fix travis
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 18e9991..b9848cc 100644
--- a/Makefile
+++ b/Makefile
@@ -14,11 +14,12 @@ COVERAGE_PROFILE = profile.out
COVERAGE_MODE = atomic
ifneq ($(origin CI), undefined)
- WORKDIR := $(TRAVIS_BUILD_DIR)
+ WORKDIR := $(GOPATH)/src/gopkg.in/src-d/go-git.v4
endif
test:
+ cd $(WORKDIR); \
$(GOTEST) ./...
test-coverage: