Update conftest.py

This commit is contained in:
Andrei 2024-12-18 19:29:56 +03:00
parent 54ea5dc232
commit 6ee5657268
1 changed files with 2 additions and 2 deletions

View File

@ -10,12 +10,12 @@ from python3_anticaptcha.core.enum import ProxyTypeEnm
@pytest.fixture(scope="function")
def delay_func():
time.sleep(0.6)
time.sleep(1)
@pytest.fixture(scope="class")
def delay_class():
time.sleep(1)
time.sleep(2)
@pytest.mark.usefixtures("delay_func")