From 344fc56ef03547ca14dc7a9fce62550364e629d8 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Wed, 30 Jul 2025 06:14:04 +0200 Subject: [PATCH] Skip proxmox connection test if paramiko cannot be imported. --- tests/unit/plugins/connection/test_proxmox_pct_remote.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/unit/plugins/connection/test_proxmox_pct_remote.py b/tests/unit/plugins/connection/test_proxmox_pct_remote.py index c0e8678cdc..751bd40da7 100644 --- a/tests/unit/plugins/connection/test_proxmox_pct_remote.py +++ b/tests/unit/plugins/connection/test_proxmox_pct_remote.py @@ -22,6 +22,9 @@ from pathlib import Path from unittest.mock import patch, MagicMock, mock_open +pytest.importorskip('paramiko') + + @pytest.fixture def connection(): play_context = PlayContext()