diff --git a/ci/test_all_features.sh b/ci/test_all_features.sh index ada63e50..0e76e299 100755 --- a/ci/test_all_features.sh +++ b/ci/test_all_features.sh @@ -7,6 +7,6 @@ fi set -euxo pipefail -for feature in $(tomljson Cargo.toml | jq --raw-output '.features | keys[]' | grep -v 'default\|std\|full\|testing-helpers'); do +for feature in $(tomljson Cargo.toml | jq --raw-output '.features | keys[]' | grep -v 'default\|std\|testing-helpers'); do RUSTFLAGS='-D warnings' cargo +nightly test -p derive_more --tests --no-default-features --features "$feature$std,testing-helpers" done