Skip to content

Commit 12b49dc

Browse files
committed
test: Prevent optional pipeline from running nonci tests
We have recently introduced tests that are marked with the combination of nonci and optional. This is because the tests are parameterized to use different templates on x86 and ARM, but the ARM template tests cannot be run in our PR CI due to requiring a specially compiled host kernel. Therefore, whatever can run in our CI should run in optional, and ARM should only run nightly. This commit allows for what is described above. Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
1 parent c4c720a commit 12b49dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/pipeline_pr_no_block.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
optional_grp = group(
3535
"❓ Optional",
36-
"./tools/devtool -y test -c 1-10 -m 0 -- ../tests/integration_tests/ -m no_block_pr --log-cli-level=INFO",
36+
"./tools/devtool -y test -c 1-10 -m 0 -- ../tests/integration_tests/ -m 'no_block_pr and not nonci' --log-cli-level=INFO",
3737
**defaults,
3838
)
3939

0 commit comments

Comments
 (0)