Skip to content

Commit 27426d8

Browse files
miss-islingtonambv
andauthored
[3.12] gh-102613: Bump recursion limit to fix running test_pathlib under Coverage (GH-105744) (#105749)
gh-102613: Bump recursion limit to fix running test_pathlib under Coverage (GH-105744) (cherry picked from commit 4e80082) Co-authored-by: Łukasz Langa <lukasz@langa.pl>
1 parent c3a2cbb commit 27426d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Lib/test/test_pathlib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1985,7 +1985,7 @@ def test_glob_long_symlink(self):
19851985
self.assertEqual(sorted(base.glob('**/*')), [bad_link])
19861986

19871987
def test_glob_above_recursion_limit(self):
1988-
recursion_limit = 40
1988+
recursion_limit = 50
19891989
# directory_depth > recursion_limit
19901990
directory_depth = recursion_limit + 10
19911991
base = pathlib.Path(os_helper.TESTFN, 'deep')

0 commit comments

Comments
 (0)