Skip to content

Commit

Permalink
fix: skip bash posix tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
john-jam committed Aug 9, 2023
1 parent 9559ab6 commit 2b24204
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fsspec/tests/test_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import os
import pickle
import subprocess
import sys
from collections import defaultdict

import numpy as np
Expand Down Expand Up @@ -1064,6 +1065,9 @@ def glob_fs():
return DummyTestFS(fs_content=PATHS_FOR_GLOB_TESTS)


@pytest.mark.skipif(
sys.platform.startswith("win"), reason="can't run bash tests on windows"
)
@pytest.mark.parametrize(
("path", "expected"),
GLOB_POSIX_TESTS,
Expand Down

0 comments on commit 2b24204

Please sign in to comment.