Run py-fuzzer with --profile=profiling locally and in CI (#21266)

This commit is contained in:
Alex Waygood 2025-11-03 16:53:42 -05:00 committed by GitHub
parent 79a02711c1
commit 42adfd40ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 26 additions and 21 deletions

View file

@ -395,13 +395,14 @@ def parse_args() -> ResolvedCliArgs:
if not args.test_executable:
print(
"Running `cargo build --release` since no test executable was specified...",
"Running `cargo build --profile=profiling` since no test executable was specified...",
flush=True,
)
cmd: list[str] = [
"cargo",
"build",
"--release",
"--profile",
"profiling",
"--locked",
"--color",
"always",