1 --- greenlet-3.1.1/src/greenlet/tests/test_leaks.py.orig
2 +++ greenlet-3.1.1/src/greenlet/tests/test_leaks.py
4 from .leakcheck import ignores_leakcheck
5 from .leakcheck import RUNNING_ON_MANYLINUX
9 # pylint:disable=protected-access
11 assert greenlet.GREENLET_USE_GC # Option to disable this was removed in 1.0
14 # Because we're just trying to track raw memory, not objects, and running
15 # the leakcheck makes an already slow test slower.
16 + @unittest.skip("Always fails: https://github.com/python-greenlet/greenlet/issues/379")
17 def test_untracked_memory_doesnt_increase_unfinished_thread_dealloc_in_thread(self):
18 self._check_untracked_memory_thread(deallocate_in_thread=True)