We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c75807 + 97d477b commit 712cda0Copy full SHA for 712cda0
.travis.yml
@@ -45,9 +45,12 @@ script:
45
46
after_success:
47
- |
48
- if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then
49
- cargo coveralls --all-features --release --exclude-pattern 'tests/*,src/bin/*'
50
- fi
+ if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then
+ curl -sL https://github.com/xd009642/tarpaulin/releases/download/0.8.3/cargo-tarpaulin-0.8.3-travis.tar.gz | \
+ tar xvz -C $HOME/.cargo/bin
51
+ cargo tarpaulin --ciserver travis-ci --coveralls $TRAVIS_JOB_ID \
52
+ --exclude-files 'tests/*' --exclude-files 'src/bin/*'
53
+ fi
54
55
matrix:
56
allow_failures:
0 commit comments