1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
From: Colin Watson <cjwatson@debian.org>
Date: Mon, 16 Dec 2024 23:48:21 +0000
Subject: test: fix test_tree_with_broken_symlinks on Python 3.13
https://docs.python.org/3/library/pathlib.html#pathlib.Path.resolve
says:
_Changed in version 3.13:_ Symlink loops are treated like other
errors: `OSError` is raised in strict mode, and no exception is raised
in non-strict mode. In previous versions, `RuntimeError` is raised no
matter the value of _strict_.
Adjust a test to take account of this.
Forwarded: https://github.com/datalad/datalad-next/pull/768
Bug-Debian: https://bugs.debian.org/1088038
Last-Update: 2024-12-16
---
datalad_next/commands/tests/test_tree.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/datalad_next/commands/tests/test_tree.py b/datalad_next/commands/tests/test_tree.py
index 0b3b215..262c858 100644
--- a/datalad_next/commands/tests/test_tree.py
+++ b/datalad_next/commands/tests/test_tree.py
@@ -786,7 +786,7 @@ class TestTreeFilesystemIssues:
link_to_self.symlink_to(link_to_self)
with assert_raises((RuntimeError, OSError)): # OSError on Windows
# resolution should fail because of infinite loop
- link_to_self.resolve()
+ link_to_self.resolve(strict=True)
# 3. good symlink pointing to existing directory
link_to_dir1 = tmp_path / 'links' / '3_link_to_dir1'
|