Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a649ec8

Browse files
committedMar 8, 2024·
Allow more iterations during test to reach state Complete
1 parent c8c6a72 commit a649ec8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎Pyext/test/py_s_TestClientApi.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,11 @@ def test_client_run(ci):
362362
ci.sync_local() # get the changes, synced with local defs
363363
suite = ci.get_defs().find_suite("test_client_run")
364364
assert suite is not None, "Expected to find suite test_client_run:\n" + str(ci.get_defs())
365+
print(f"Suite state: {suite.get_state()}, {count}, at {datetime.now()}")
365366
if suite.get_state() == State.complete:
366367
break;
367368
time.sleep(3)
368-
if count > 20:
369+
if count > 120:
369370
assert False, "test_client_run aborted after " + str(count) + " loops:\n" + str(ci.get_defs())
370371

371372
ci.log_msg("Looped " + str(count) + " times")

0 commit comments

Comments
 (0)
Please sign in to comment.