Skip to content

Commit

Permalink
fix test build script
Browse files Browse the repository at this point in the history
`cargo test` failed because of the too long lines but the build passed
anyway because `cargo test -- --ignored` did. The script should be a
single command.

https://docs.travis-ci.com/user/deployment/script/
  • Loading branch information
scampi committed Oct 28, 2019
1 parent 6b599e6 commit d57f94a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@ matrix:
script:
- |
if [ -z ${INTEGRATION} ]; then
cargo build
cargo test
cargo test -- --ignored
cargo build && cargo test && cargo test -- --ignored
else
./ci/integration.sh
fi
Expand Down

0 comments on commit d57f94a

Please sign in to comment.