[pypy-commit] pypy py3.5: Don't stick these tests into some unrelated test class, particularly

arigo pypy.commits at gmail.com
Fri Oct 26 05:30:55 EDT 2018


Author: Armin Rigo <arigo at tunes.org>
Branch: py3.5
Changeset: r95248:a70dd232b6a3
Date: 2018-10-26 11:29 +0200
http://bitbucket.org/pypy/pypy/changeset/a70dd232b6a3/

Log:	Don't stick these tests into some unrelated test class, particularly
	one that is skipped on some platforms

diff --git a/pypy/module/thread/test/test_lock.py b/pypy/module/thread/test/test_lock.py
--- a/pypy/module/thread/test/test_lock.py
+++ b/pypy/module/thread/test/test_lock.py
@@ -306,6 +306,9 @@
         finally:
             signal.signal(signal.SIGALRM, oldalrm)
 
+
+class AppTestLockRepr(GenericTestThread):
+
     def test_lock_repr(self):
         import _thread
         lock = _thread.allocate_lock()


More information about the pypy-commit mailing list