Skip to content

Commit

Permalink
skip test_ftp_uri on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
simleo committed Mar 15, 2024
1 parent 6fea6d6 commit bf55c2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import pytest
import os
import uuid
import sys
import zipfile
from itertools import product
from urllib.error import URLError
Expand Down Expand Up @@ -214,6 +215,7 @@ def test_looks_like_file_uri(tmpdir, monkeypatch):
assert (out_path / f_name).is_file()


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

0 comments on commit bf55c2e

Please sign in to comment.