Skip to content

Commit

Permalink
make test.sh fail if any command fails
Browse files Browse the repository at this point in the history
  • Loading branch information
oconnor663 committed Mar 24, 2020
1 parent 80cb5cb commit 7e291ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/actions/test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash

cargo test --features "$FEATURES num-bigint num-complex"
set -e -u -o pipefail

cargo test --features "${FEATURES:-} num-bigint num-complex"
(cd pyo3-derive-backend; cargo test)

for example_dir in examples/*; do
Expand Down

0 comments on commit 7e291ea

Please sign in to comment.