Skip to content

Commit

Permalink
test: webdav fsspec test requires newer fsspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-- committed Sep 23, 2023
1 parent 9d4d049 commit 9034066
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions upath/tests/implementations/test_webdav.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from upath import UPath

from ..cases import BaseTests
from ..utils import xfail_if_version


class TestUPathWebdav(BaseTests):
Expand All @@ -20,3 +21,7 @@ def test_storage_options(self):
base_url = storage_options.pop("base_url")
assert storage_options == self.path.fs.storage_options
assert base_url == self.path.fs.client.base_url

@xfail_if_version("fsspec", lt="2022.5.0", reason="requires fsspec>=2022.5.0")
def test_read_with_fsspec(self):
super().test_read_with_fsspec()

0 comments on commit 9034066

Please sign in to comment.