Skip to content

Commit d677d66

Browse files
committed
More workflow edits.
1 parent b5cf67a commit d677d66

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/runsuite_repeat.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99
def run():
1010
for stepnum in range(10):
1111
print(f'[RUNSUITE_REPEAT] {os.getcwd()} :: {[os.path.exists("nbclassic"), os.path.exists("nbclassic/tests"), os.path.exists("nbclassic/tests/end_to_end"), os.path.exists("tools/runsuite_repeat.py")]}')
12-
proc = subprocess.run('pytest -sv nbclassic/tests/end_to_end')
12+
try:
13+
proc = subprocess.run('pytest -sv tests/end_to_end')
14+
except Exception:
15+
print(f'\n[RUNSUITE_REPEAT] Run {stepnum} -> Exception')
16+
continue
1317
print(f'\n[RUNSUITE_REPEAT] Run {stepnum} -> {"Success" if proc.returncode == 0 else proc.returncode}\n')
1418

1519

0 commit comments

Comments
 (0)