We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d03352c commit 168085aCopy full SHA for 168085a
tests/test_util.py
@@ -2,6 +2,8 @@
2
import subprocess
3
import socket
4
5
+from shutil import which
6
+
7
import attr
8
import pytest
9
import logging
@@ -79,6 +81,7 @@ def test_sshconnection_get():
79
81
from labgrid.util.ssh import SSHConnection
80
82
SSHConnection("localhost")
83
84
+@pytest.mark.skipif(not which("ssh"), reason="ssh not available")
85
def test_sshconnection_inactive_raise():
86
87
con = SSHConnection("localhost")
0 commit comments