Skip to content

Commit

Permalink
maybe with covermode: set
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann committed Jun 5, 2016
1 parent f34a91f commit 1dac4c0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ install:
script:
- go get -t ./...
# - ineffassign .
- ginkgo -cover -r
# - ginkgo -cover -r
- go test -coverprofile=coverage.out -covermode=set
- cd frames && go test -coverprofile=coverage.txt -covermode=set

after_success:
- cat quic-go.coverprofile > coverage.txt
- cat */*.coverprofile | grep -v "mode: atomic" >> coverage.txt
- bash <(curl -s https://codecov.io/bash) -f coverage.txt
# - cat quic-go.coverprofile > coverage.txt
# - cat */*.coverprofile | grep -v "mode: atomic" >> coverage.txt
- cat coverage.out > coverage.txt
- cat frames/coverage.out | grep -v "mode: set" >> coverage.txt
# - bash <(curl -s https://codecov.io/bash) -f coverage.txt
- goveralls -coverprofile=coverage.txt -service=travis-ci

0 comments on commit 1dac4c0

Please sign in to comment.