Skip to content

Commit 8b72b52

Browse files
committed
add conftest with sleep between tests
1 parent 8131e45 commit 8b72b52

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests-integ/conftest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pytest
2+
import time
3+
4+
@pytest.fixture(autouse=True)
5+
def sleep_to_avoid_throttling():
6+
time.sleep(5)

0 commit comments

Comments
 (0)