From a65602336338212179e9fff410d255f21ebded7a Mon Sep 17 00:00:00 2001 From: Joshua Ortiz Date: Mon, 16 Dec 2024 14:15:01 -0500 Subject: [PATCH] Remove benchmarks from CI test (#16833) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # 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` --- tools/ci/src/commands/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/src/commands/test.rs b/tools/ci/src/commands/test.rs index efb4f518dc..82a64e02a0 100644 --- a/tools/ci/src/commands/test.rs +++ b/tools/ci/src/commands/test.rs @@ -17,7 +17,7 @@ impl Prepare for TestCommand { vec![PreparedCommand::new::( 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.", )]