From 7047488253e0ee9dfdb906d8d82bc9001e3b5fb7 Mon Sep 17 00:00:00 2001 From: Alice Cecile Date: Fri, 23 Jun 2023 15:57:55 -0400 Subject: [PATCH] Don't run benchmarks in CI (#982) * Clippy * Missing docs * Broken doc links * Don't run benchmarks in CI --- tools/ci/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/src/main.rs b/tools/ci/src/main.rs index c41fb4ead..157ff4bca 100644 --- a/tools/ci/src/main.rs +++ b/tools/ci/src/main.rs @@ -112,7 +112,7 @@ fn main() { if what_to_run.contains(&Check::Test) { // Run tests (except doc tests and without building examples) - cmd!(sh, "cargo test --workspace --lib --bins --tests --benches") + cmd!(sh, "cargo test --workspace --lib --bins --tests") .run() .expect("Please fix failing tests in output above."); }