Skip to content

Commit 9bd75b9

Browse files
authored
Update fixtures.py
1 parent 34df500 commit 9bd75b9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/validation/tests/Engine/fixtures.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,10 @@ def test_time(request):
9696
if test_time is None:
9797
return 30
9898
return int(test_time)
99+
100+
@pytest.fixture(autouse=True)
101+
def delay_between_tests():
102+
yield
103+
print("Sleeping 5s between tests cases runs.")
104+
time.sleep(5)
105+

0 commit comments

Comments
 (0)