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 1fc9ea7 commit 934caf7Copy full SHA for 934caf7
1 file changed
src/trio/_tests/test_path.py
@@ -230,6 +230,10 @@ async def test_globmethods(path: trio.Path) -> None:
230
assert entries == {"_bar.txt", "bar.txt"}
231
232
233
+@pytest.mark.xfail(
234
+ sys.version_info >= (3, 14),
235
+ reason="we need to update `as_uri` to use Path.as_uri"
236
+)
237
async def test_as_uri(path: trio.Path) -> None:
238
path = await path.parent.resolve()
239
0 commit comments