Adjust more test timeouts

This commit is contained in:
Daniel A. Wozniak 2024-02-28 01:07:31 -07:00
parent 588fb116f7
commit 7c487d2c71
2 changed files with 5 additions and 1 deletions

View file

@ -3,6 +3,10 @@ Tests using nginx formula
"""
import pytest
pytestmark = [
pytest.mark.timeout_unless_on_windows(120),
]
@pytest.fixture(scope="module")
def _formula(saltstack_formula):

View file

@ -25,7 +25,7 @@ from tests.support.runtests import RUNTIME_VARS
from tests.support.unit import TestCase
pytestmark = [
pytest.mark.timeout_unless_on_windows(180),
pytest.mark.timeout_unless_on_windows(240),
]
log = logging.getLogger(__name__)