From fcabd726d516e8ff2d1ce75177375e0fd5e07a65 Mon Sep 17 00:00:00 2001 From: Andrei Date: Tue, 12 Sep 2023 20:37:08 +0300 Subject: [PATCH] Upd delays --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 33da908..d47e6bd 100755 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -8,12 +8,12 @@ @pytest.fixture(scope="function") def delay_func(): - time.sleep(2) + time.sleep(1) @pytest.fixture(scope="class") def delay_class(): - time.sleep(5) + time.sleep(2) @pytest.mark.usefixtures("delay_func")