Skip to content

Commit

Permalink
plugins_integration: skip broken agents
Browse files Browse the repository at this point in the history
CMK-21720

Change-Id: I7b41bed43beaee0d53c618d06706eeb075315719
  • Loading branch information
SoloJacobs committed Feb 8, 2025
1 parent bd479d2 commit eaa18cd
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion tests/plugins_integration/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit eaa18cd

Please sign in to comment.