소스 검색

Configure TravisCI goveralls call correctly.

By default goveralls tries to use gocov.  This modifies it to use the
cover profile provided by go test instead.
Dave Collins 11 년 전
부모
커밋
2d30de540a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -8,4 +8,4 @@ after_success:
     - go get -v github.com/mattn/goveralls
     - export PATH=$PATH:$HOME/gopath/bin
     - cd ./spew
-    - goveralls -v -service travis-ci
+    - goveralls coverprofile=profile.cov -service=travis-ci