We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cec87b commit d7b6cfbCopy full SHA for d7b6cfb
importlib_resources/tests/test_files.py
@@ -4,6 +4,8 @@
4
import importlib
5
import contextlib
6
7
+import pytest
8
+
9
import importlib_resources as resources
10
from ..abc import Traversable
11
from . import data01
@@ -34,6 +36,7 @@ def test_read_text(self):
34
36
def test_traversable(self):
35
37
assert isinstance(resources.files(self.data), Traversable)
38
39
+ @pytest.mark.xfail("sys.version_info[:2] == (3, 10)", reason="#257")
40
def test_joinpath_with_multiple_args(self):
41
files = resources.files(self.data)
42
binfile = files.joinpath('subdirectory', 'binary.file')
0 commit comments