We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e27a78 commit 45d819dCopy full SHA for 45d819d
1 file changed
tests/tests_transfers/ssh/test_ssh_suggest_next.py
@@ -1,3 +1,4 @@
1
+import os
2
import platform
3
4
import pytest
@@ -18,6 +19,10 @@
18
19
reason="SSH tests are not run as docker is either not installed, "
20
"running or current user is not in the docker group.",
21
)
22
+@pytest.mark.skipif(
23
+ os.getenv("CI") == "true",
24
+ reason="Skipped on CI as sporadically failing there.",
25
+)
26
class TestSSHDriveSuggestNext(BaseSSHTransfer, TuiBase):
27
@pytest.fixture(
28
scope="function",
0 commit comments