Skip to content

Commit d7b51f1

Browse files
committed
plugins_integration: skip broken agents
CMK-21720 Change-Id: I7b41bed43beaee0d53c618d06706eeb075315719
1 parent a08a179 commit d7b51f1

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

tests/plugins_integration/test_plugin.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,18 @@
2121
logger = logging.getLogger(__name__)
2222

2323

24-
@pytest.mark.parametrize("host_name", get_host_names())
24+
@pytest.mark.parametrize(
25+
"host_name",
26+
[
27+
host
28+
for host in get_host_names()
29+
if host
30+
not in (
31+
"agent-2.2.0p14-windows-dhcp", # CMK-21720
32+
"agent-2.2.0p14-windows-veeam-backup", # CMK-21720
33+
)
34+
],
35+
)
2536
def test_plugin(
2637
test_site: Site,
2738
host_name: str,

0 commit comments

Comments
 (0)