Increase timeouts in problematic tests

This commit is contained in:
Pedro Algarvio 2024-02-18 19:43:30 +00:00
parent 7c8a104f3f
commit 8721d47578
No known key found for this signature in database
GPG key ID: BB36BF6584A298FF
2 changed files with 5 additions and 0 deletions

View file

@ -19,6 +19,7 @@ pytestmark = [
reason="Deltaproxy minions do not currently work on spawning platforms.",
),
pytest.mark.core_test,
pytest.mark.timeout_unless_on_windows(320),
]

View file

@ -24,6 +24,10 @@ from salt.utils.pyobjects import (
from tests.support.runtests import RUNTIME_VARS
from tests.support.unit import TestCase
pytestmark = [
pytest.mark.timeout_unless_on_windows(120),
]
log = logging.getLogger(__name__)