Skip to content

Commit 16f86ca

Browse files
committed
try marker after ra
1 parent d5e9630 commit 16f86ca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/examples.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ jobs:
5858
- name: Run examples test scope
5959
run: |
6060
set +e
61-
python -m pytest -s -m "not cuda" -ra tests/cross_fw/examples \
61+
python -m pytest -s -ra tests/cross_fw/examples \
62+
-m "not cuda" \
6263
--junit-xml=pytest-results.xml \
6364
--durations-path=tests/cross_fw/examples/.test_durations \
6465
--splitting-algorithm=least_duration \
@@ -129,7 +130,8 @@ jobs:
129130
- name: Run examples test scope
130131
run: |
131132
set +e
132-
python -m pytest -s -m "cuda" -ra tests/cross_fw/examples \
133+
python -m pytest -s -ra tests/cross_fw/examples \
134+
-m "cuda" \
133135
--junit-xml=pytest-results.xml \
134136
--durations-path=tests/cross_fw/examples/.test_durations \
135137
--splitting-algorithm=least_duration \

0 commit comments

Comments
 (0)