Skip to content

Commit 92fc947

Browse files
committed
test: Skip test_del on PyPy* since it hangs
Fixes #43.
1 parent 05f0d90 commit 92fc947

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,8 @@ def test_context1(self):
334334
self.assertFalse(lock.is_locked)
335335
return None
336336

337+
@unittest.skipIf(hasattr(sys, 'pypy_version_info'),
338+
'del() does not trigger GC in PyPy')
337339
def test_del(self):
338340
"""
339341
Tests, if the lock is released, when the object is deleted.

0 commit comments

Comments
 (0)