Skip to content

Commit ab271c5

Browse files
committed
Add reason to skip tests
1 parent e5fcb04 commit ab271c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/fsystem/test_fcopy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def _make_paths(
5050

5151
return l_path
5252
# ----------------------
53-
@pytest.mark.skip
53+
@pytest.mark.skip(reason='Uses SSH')
5454
def test_local(tmp_path) -> None:
5555
'''
5656
Test for transfer between two local paths
@@ -62,7 +62,7 @@ def test_local(tmp_path) -> None:
6262
for source, target in zip(l_source, l_target):
6363
fcp.copy(source=source, target=target)
6464
# ----------------------
65-
@pytest.mark.skip
65+
@pytest.mark.skip(reason='Uses SSH')
6666
def test_remote_target(tmp_path) -> None:
6767
'''
6868
Files are in a local server, copy them remotely
@@ -74,7 +74,7 @@ def test_remote_target(tmp_path) -> None:
7474
for source, target in zip(l_source, l_target):
7575
fcp.copy(source=source, target=target)
7676
# ----------------------
77-
@pytest.mark.skip
77+
@pytest.mark.skip(reason='Uses SSH')
7878
def test_remote_source(tmp_path) -> None:
7979
'''
8080
Files are in a remote server, copy them locally

0 commit comments

Comments
 (0)