Skip to content

Commit d57f94a

Browse files
committed
fix test build script
`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/
1 parent 6b599e6 commit d57f94a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ matrix:
4747
script:
4848
- |
4949
if [ -z ${INTEGRATION} ]; then
50-
cargo build
51-
cargo test
52-
cargo test -- --ignored
50+
cargo build && cargo test && cargo test -- --ignored
5351
else
5452
./ci/integration.sh
5553
fi

0 commit comments

Comments
 (0)