From 1c45f8158dec3c0d993a5e7ecf068c887fc5021c Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 5 Oct 2024 23:17:25 +0300 Subject: [PATCH] Update conftest.py --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 99c7d43..21ea8c1 100755 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -8,12 +8,12 @@ import pytest @pytest.fixture(scope="function") def delay_func(): - time.sleep(5) + time.sleep(1) @pytest.fixture(scope="class") def delay_class(): - time.sleep(10) + time.sleep(1) @pytest.mark.usefixtures("delay_func")