From 003bfb48267356965706abef7299827da1bba31b Mon Sep 17 00:00:00 2001 From: not-matthias Date: Wed, 29 Jul 2026 12:20:02 +0200 Subject: [PATCH] fix: disable allocator exclusion by default --- src/cli/shared.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/shared.rs b/src/cli/shared.rs index 1a6db1d64..ae684bf62 100644 --- a/src/cli/shared.rs +++ b/src/cli/shared.rs @@ -126,7 +126,7 @@ pub struct ExecAndRunSharedArgs { #[arg( long, env = "CODSPEED_EXCLUDE_ALLOCATIONS", - default_value_t = true, + default_value_t = false, action = clap::ArgAction::Set )] pub exclude_allocations: bool,