Remove benchmarks from CI test (#16833)

# Objective

Fixes [Do not test benchmarks in CI
#16803](https://github.com/bevyengine/bevy/issues/16803), part of [Add
benchmarks and compile fail tests back to
workspace #16801](https://github.com/bevyengine/bevy/issues/16801)

## Solution

Removes the `--benches` flag from the CI tool test.

## Testing

`cargo run -p ci --quiet -- test`
This commit is contained in:
Joshua Ortiz 2024-12-16 14:15:01 -05:00 committed by GitHub
parent 7749c9945b
commit a656023363
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ impl Prepare for TestCommand {
vec![PreparedCommand::new::<Self>(
cmd!(
sh,
"cargo test --workspace --lib --bins --tests --benches {no_fail_fast}"
"cargo test --workspace --lib --bins --tests {no_fail_fast}"
),
"Please fix failing tests in output above.",
)]