From b3a19e6ad490875f90684b4bc086552918b2cd01 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Wed, 28 Feb 2024 11:18:21 +0000 Subject: [PATCH] Adjust timeout for windows --- tests/pytests/functional/states/test_docker_container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pytests/functional/states/test_docker_container.py b/tests/pytests/functional/states/test_docker_container.py index 3eb8d836406..10e6509466d 100644 --- a/tests/pytests/functional/states/test_docker_container.py +++ b/tests/pytests/functional/states/test_docker_container.py @@ -29,7 +29,7 @@ pytestmark = [ pytest.mark.skip_if_binaries_missing( "docker", "dockerd", reason="Docker not installed" ), - pytest.mark.timeout(120), + pytest.mark.timeout_unless_on_windows(240), ] IPV6_ENABLED = bool(salt.utils.network.ip_addrs6(include_loopback=True))