diff --git a/crates/infra/cli/src/commands/test/mod.rs b/crates/infra/cli/src/commands/test/mod.rs index 792a037d1e..89da562a9e 100644 --- a/crates/infra/cli/src/commands/test/mod.rs +++ b/crates/infra/cli/src/commands/test/mod.rs @@ -44,11 +44,10 @@ fn test_cargo() -> Result<()> { Command::new("cargo") .args(["nextest", "run"]) + .args(["--exclude", "solidity_testing_perf"]) // Requires callgrind, which may not be available .flag("--workspace") .flag("--all-features") - .flag("--lib") - .flag("--bins") - .flag("--examples") + .flag("--all-targets") .flag("--no-fail-fast") .add_build_rustflags() .run();