diff --git a/ci/actions/test.sh b/ci/actions/test.sh index 6f014585..0b2db4cf 100755 --- a/ci/actions/test.sh +++ b/ci/actions/test.sh @@ -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