diff --git a/codeflash/benchmarking/pytest_new_process_trace_benchmarks.py b/codeflash/benchmarking/pytest_new_process_trace_benchmarks.py index 232c39fa7..f8650d9fb 100644 --- a/codeflash/benchmarking/pytest_new_process_trace_benchmarks.py +++ b/codeflash/benchmarking/pytest_new_process_trace_benchmarks.py @@ -16,8 +16,23 @@ codeflash_benchmark_plugin.setup(trace_file, project_root) codeflash_trace.setup(trace_file) exitcode = pytest.main( - [benchmarks_root, "--codeflash-trace", "-p", "no:benchmark","-p", "no:codspeed","-p", "no:cov-s", "-o", "addopts="], plugins=[codeflash_benchmark_plugin] - ) # Errors will be printed to stdout, not stderr + [ + benchmarks_root, + "--codeflash-trace", + "-p", + "no:benchmark", + "-p", + "no:codspeed", + "-p", + "no:cov", + "-p", + "no:profiling", + "-s", + "-o", + "addopts=", + ], + plugins=[codeflash_benchmark_plugin], + ) # Errors will be printed to stdout, not stderr except Exception as e: print(f"Failed to collect tests: {e!s}", file=sys.stderr)