Skip to content

Commit c0442d0

Browse files
committed
skip test_ftp_uri on MacOS
1 parent 6e15603 commit c0442d0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/test_write.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import pytest
2121
import os
2222
import uuid
23+
import sys
2324
import zipfile
2425
from itertools import product
2526
from urllib.error import URLError
@@ -214,6 +215,7 @@ def test_looks_like_file_uri(tmpdir, monkeypatch):
214215
assert (out_path / f_name).is_file()
215216

216217

218+
@pytest.mark.skipif(sys.platform == "darwin", reason="FTP opening broken on macOS CI instances")
217219
@pytest.mark.slow
218220
@pytest.mark.parametrize("fetch_remote", [False, True])
219221
def test_ftp_uri(tmpdir, fetch_remote):

0 commit comments

Comments
 (0)