Skip to content

Commit cd37b1b

Browse files
committed
sanity checkv2
1 parent 7fd1c88 commit cd37b1b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,12 @@ jobs:
136136
shell: cmd /C call {0}
137137
run: pytest . -vvv
138138

139-
- name: Test xeus-python C++
139+
- name: Test xeus-python C++ (20 iterations)
140140
shell: cmd /C call {0}
141141
run: |
142-
for /L %%i in (1,1,20) do test_xeus_python
143-
timeout-minutes: 4
144-
working-directory: build\test
145-
142+
for /L %%i in (1,1,20) do (
143+
echo Running iteration %%i
144+
test_xeus_python || exit /b 1
145+
)
146+
timeout-minutes: 20
147+
working-directory: build\test

0 commit comments

Comments
 (0)