Skip to content

Commit 576ce6e

Browse files
committed
Reintroduce the timer
1 parent 85dfdae commit 576ce6e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

runner/testsuite/openspace.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,10 @@ def run_single_test(test_path, executable) -> TestResult:
138138
stderr=subprocess.PIPE
139139
)
140140

141+
# Add a sleeping time instead of repeatedly trying to reconnect. Starting up OpenSpace
142+
# in general takes longer than this, so we don't actually lose any time
143+
time.sleep(15)
144+
141145
async def mainLoop():
142146
"""
143147
The main loop of an async event loop that is needed for the OpenSpace Python API to

0 commit comments

Comments
 (0)