Skip to content

Commit 168085a

Browse files
committed
tests: util: mark local ssh test with skip
This test will try to call SSH, skip this if it is not available. Signed-off-by: Rouven Czerwinski <[email protected]>
1 parent d03352c commit 168085a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_util.py

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
import subprocess
33
import socket
44

5+
from shutil import which
6+
57
import attr
68
import pytest
79
import logging
@@ -79,6 +81,7 @@ def test_sshconnection_get():
7981
from labgrid.util.ssh import SSHConnection
8082
SSHConnection("localhost")
8183

84+
@pytest.mark.skipif(not which("ssh"), reason="ssh not available")
8285
def test_sshconnection_inactive_raise():
8386
from labgrid.util.ssh import SSHConnection
8487
con = SSHConnection("localhost")

0 commit comments

Comments
 (0)