Skip to content

Commit

Permalink
travis: run all tests with tarpaulin
Browse files Browse the repository at this point in the history
  • Loading branch information
elinorbgr committed Jul 19, 2018
1 parent 914cb03 commit d737842
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ script:
if [ -n "$BUILD_FMT" ]; then
cargo fmt --all -- --write-mode=diff
elif [ -n "$TARPAULIN" ]; then
cargo tarpaulin --features "" --ignore-tests --out Xml && bash <(curl -s https://codecov.io/bash) -cF rust_impl
cargo tarpaulin --features "native_lib" --ignore-tests --out Xml && bash <(curl -s https://codecov.io/bash) -cF native_lib
cargo tarpaulin --all --features "" --ignore-tests --out Xml
bash <(curl -s https://codecov.io/bash) -cF rust_impl
cargo tarpaulin --all --features "native_lib" --ignore-tests --out Xml
bash <(curl -s https://codecov.io/bash) -cF native_lib
elif [ -n "$BUILD_DOC" ]; then
cargo doc --all --no-deps --all-features
else
Expand Down

0 comments on commit d737842

Please sign in to comment.