mirror of https://github.com/python/cpython
gh-102613: Bump recursion limit to fix running test_pathlib under Coverage (#105744)
This commit is contained in:
parent
be2779c0cb
commit
4e80082723
|
@ -2107,7 +2107,7 @@ class _BasePathTest(object):
|
|||
self.assertEqual(sorted(base.glob('**/*')), [bad_link])
|
||||
|
||||
def test_glob_above_recursion_limit(self):
|
||||
recursion_limit = 40
|
||||
recursion_limit = 50
|
||||
# directory_depth > recursion_limit
|
||||
directory_depth = recursion_limit + 10
|
||||
base = pathlib.Path(os_helper.TESTFN, 'deep')
|
||||
|
|
Loading…
Reference in New Issue