Skip to content

Commit 82e01af

Browse files
Merge branch 'main' into checkpoint-for-codeflash-all-runs
2 parents e58d877 + 4e6bdc6 commit 82e01af

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

codeflash/benchmarking/pytest_new_process_trace_benchmarks.py

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,23 @@
1616
codeflash_benchmark_plugin.setup(trace_file, project_root)
1717
codeflash_trace.setup(trace_file)
1818
exitcode = pytest.main(
19-
[benchmarks_root, "--codeflash-trace", "-p", "no:benchmark","-p", "no:codspeed","-p", "no:cov-s", "-o", "addopts="], plugins=[codeflash_benchmark_plugin]
20-
) # Errors will be printed to stdout, not stderr
19+
[
20+
benchmarks_root,
21+
"--codeflash-trace",
22+
"-p",
23+
"no:benchmark",
24+
"-p",
25+
"no:codspeed",
26+
"-p",
27+
"no:cov",
28+
"-p",
29+
"no:profiling",
30+
"-s",
31+
"-o",
32+
"addopts=",
33+
],
34+
plugins=[codeflash_benchmark_plugin],
35+
) # Errors will be printed to stdout, not stderr
2136

2237
except Exception as e:
2338
print(f"Failed to collect tests: {e!s}", file=sys.stderr)

0 commit comments

Comments
 (0)