mirror of https://github.com/python/cpython
gh-102209: Disable the timeout in test_implied_dirs_performance. (#102225)
Disable the timeout in test_implied_dirs_performance. Workaround for #102209 until I can work out a more robust test for linearity.
This commit is contained in:
parent
2db23d10bf
commit
89b4c12053
|
@ -330,7 +330,8 @@ class TestPath(unittest.TestCase):
|
|||
# Check the file iterated all items
|
||||
assert entries.count == self.HUGE_ZIPFILE_NUM_ENTRIES
|
||||
|
||||
@set_timeout(3)
|
||||
# timeout disabled due to #102209
|
||||
# @set_timeout(3)
|
||||
def test_implied_dirs_performance(self):
|
||||
data = ['/'.join(string.ascii_lowercase + str(n)) for n in range(10000)]
|
||||
zipfile.CompleteDirs._implied_dirs(data)
|
||||
|
|
Loading…
Reference in New Issue