diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-01-27 12:19:34 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-01-27 12:19:34 +0100 |
commit | 5e0030a4375550360d1ab703741a4477e99e8534 (patch) | |
tree | 79296fb61621e4c4cb20eace7fafe2077e0c8710 /.travis.yml | |
parent | 35ee4d749be21691b78a7465361ad47179fe2eff (diff) | |
download | go-git-5e0030a4375550360d1ab703741a4477e99e8534.tar.gz |
ci
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml index 7ab153a..9b7ee12 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: go go: - 1.4 - 1.5 + - tip install: - rm -rf $GOPATH/src/gopkg.in/src-d @@ -11,18 +12,7 @@ install: - go get -v -t ./... script: - - go test -v ./... - -script: - - go test -v gopkg.in/src-d/go-git.v2 -covermode=count -coverprofile=coverage.out - - go test -v gopkg.in/src-d/go-git.v2/clients/common -covermode=count -coverprofile=tmp.out - - tail -n +2 tmp.out >> coverage.out - - go test -v gopkg.in/src-d/go-git.v2/clients/http -covermode=count -coverprofile=tmp.out - - tail -n +2 tmp.out >> coverage.out - - go test -v gopkg.in/src-d/go-git.v2/formats/packfile -covermode=count -coverprofile=tmp.out - - tail -n +2 tmp.out >> coverage.out - - go test -v gopkg.in/src-d/go-git.v2/formats/pktline -covermode=count -coverprofile=tmp.out - - tail -n +2 tmp.out >> coverage.out + - make test-coverage after_success: - bash <(curl -s https://codecov.io/bash) |