mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
20 lines
555 B
Python
20 lines
555 B
Python
|
# Various testing utility functions
|
||
|
|
||
|
import time
|
||
|
|
||
|
# Loop a function 'tries' times, until all assertions pass. With a 0.3 second
|
||
|
# pause after each. This re-raises AssertionError in case we run out of tries
|
||
|
def until_asserts_pass(tries, func):
|
||
|
for x in range(0, tries):
|
||
|
print(x)
|
||
|
if x == tries-1:
|
||
|
# last time; raise any assertions in caller:
|
||
|
func()
|
||
|
else:
|
||
|
try:
|
||
|
func()
|
||
|
break
|
||
|
except AssertionError:
|
||
|
time.sleep(0.3)
|
||
|
pass
|