You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .buildkite/pipeline_perf.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,8 @@ def build_group(test):
73
73
devtool_opts+=" --ab"
74
74
pytest_opts=f" {ab_opts} run {REVISION_A}{REVISION_B} --test {test_path}"
75
75
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).
0 commit comments