From e740b003082021a1cb399fcf22cd2036a996641b Mon Sep 17 00:00:00 2001 From: Lucas Farias Date: Fri, 27 Jun 2025 15:32:29 -0300 Subject: [PATCH] Revert one last CI change --- tools/ci/src/commands/test.rs | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/tools/ci/src/commands/test.rs b/tools/ci/src/commands/test.rs index 94876298c4..86057d9776 100644 --- a/tools/ci/src/commands/test.rs +++ b/tools/ci/src/commands/test.rs @@ -19,17 +19,10 @@ impl Prepare for TestCommand { sh, // `--benches` runs each benchmark once in order to verify that they behave // correctly and do not panic. - "cargo test --workspace --lib --bins --benches {no_fail_fast...} {jobs...} -- {test_threads...}" + "cargo test --workspace --lib --bins --tests --benches {no_fail_fast...} {jobs...} -- {test_threads...}" ), "Please fix failing tests in output above.", - ), - PreparedCommand::new::( - cmd!( - sh, - "cargo test --tests {no_fail_fast...} -- --skip check_mesh --skip check_standard_material" - ), - "Please fix failing tests in output above.", - ), + ) ] } }