Skip to content

Commit 123a351

Browse files
committed
ci: make sure test commands are &&-chained
The new test command added in e0c627b directly followed the prior command, without `&&`-chaining the result. So if the tests before it _failed_, we wouldn't notice...
1 parent 351f6ad commit 123a351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ script:
4141
cargo build --verbose --features "$FEATURES" &&
4242
if [ -z "$SKIP_TEST" ]; then
4343
cargo test --verbose --features "$FEATURES" &&
44-
cargo test --release --verbose --features "$FEATURES"
44+
cargo test --release --verbose --features "$FEATURES" &&
4545
if [ "$FEATURES" = "serde-1" ]; then
4646
cargo test --verbose -p test-serde &&
4747
cargo test --release --verbose -p test-serde

0 commit comments

Comments
 (0)