From eaa18cdb49d3c3d588bb114cc1445c30e6f423f6 Mon Sep 17 00:00:00 2001 From: Solomon Jacobs Date: Sat, 8 Feb 2025 10:03:37 +0100 Subject: [PATCH] plugins_integration: skip broken agents CMK-21720 Change-Id: I7b41bed43beaee0d53c618d06706eeb075315719 --- tests/plugins_integration/test_plugin.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/tests/plugins_integration/test_plugin.py b/tests/plugins_integration/test_plugin.py index 088e62e50b5..8b5175a12c2 100644 --- a/tests/plugins_integration/test_plugin.py +++ b/tests/plugins_integration/test_plugin.py @@ -21,7 +21,18 @@ logger = logging.getLogger(__name__) -@pytest.mark.parametrize("host_name", get_host_names()) +@pytest.mark.parametrize( + "host_name", + [ + host + for host in get_host_names() + if host + not in ( + "agent-2.2.0p14-windows-dhcp", # CMK-21720 + "agent-2.2.0p14-windows-veeam-backup", # CMK-21720 + ) + ], +) def test_plugin( test_site: Site, host_name: str,