Skip to content

Commit b8a909d

Browse files
committed
Fixed temp workflow edits.
1 parent 2ac94b8 commit b8a909d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tools/runsuite_repeat.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""CI/CD debug script"""
2+
3+
4+
import subprocess
5+
import time
6+
7+
8+
def run():
9+
for stepnum in range(10):
10+
proc = subprocess.run('pytest -sv nbclassic/tests/end_to_end')
11+
print(f'\n[RUNSUITE_REPEAT] Run {stepnum} -> {"Success" if proc.returncode == 0 else proc.returncode}\n')
12+
13+
14+
if __name__ == '__main__':
15+
run()

0 commit comments

Comments
 (0)