Skip to content

Commit 0892084

Browse files
authored
Merge branch 'main' into fix_empty_mmds_path
2 parents b39b6a9 + 274ba9c commit 0892084

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.buildkite/pipeline_perf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ def build_group(test):
7373
devtool_opts += " --ab"
7474
pytest_opts = f" {ab_opts} run {REVISION_A} {REVISION_B} --test {test_path}"
7575
else:
76-
pytest_opts += f" -m nonci {test_path}"
76+
# Passing `-m ''` below instructs pytest to collect tests regardless of their markers (e.g. it will collect both tests marked as nonci, and tests without any markers).
77+
pytest_opts += f" -m '' {test_path}"
7778
binary_dir = test.pop("binary_dir")
7879
return group(
7980
label=test.pop("label"),

0 commit comments

Comments
 (0)