Skip to content

Commit e02124e

Browse files
committed
run args config
1 parent a5ae7cb commit e02124e

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

codeflash/benchmarking/pytest_new_process_trace_benchmarks.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,22 @@
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+
],
33+
plugins=[codeflash_benchmark_plugin],
34+
) # Errors will be printed to stdout, not stderr
2135

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

0 commit comments

Comments
 (0)