Skip to content

Commit

Permalink
Remove benchmarks from CI test (#16833)
Browse files Browse the repository at this point in the history
# Objective

Fixes [Do not test benchmarks in CI
#16803](#16803), part of [Add
benchmarks and compile fail tests back to
workspace #16801](#16801)

## Solution

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

## Testing

`cargo run -p ci --quiet -- test`
  • Loading branch information
sophrosyne97 authored Dec 16, 2024
1 parent 7749c99 commit a656023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci/src/commands/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
)]
Expand Down

0 comments on commit a656023

Please sign in to comment.