Pass --max-fail to nextest so it doesn't fail fast

This commit is contained in:
Trevor Gross 2025-01-15 00:54:55 +00:00
parent f63ef37218
commit b251f74843

View file

@ -93,7 +93,7 @@ if [ "$nextest" = "1" ]; then
cfg_flag="--config-file $cfg_file"
fi
cmd="cargo nextest run ${cfg_flag:-} $flags"
cmd="cargo nextest run ${cfg_flag:-} --max-fail=10 $flags"
profile="--cargo-profile"
fi