[issue27063] Some unittest loader tests are silently skipped by mistake

2016-05-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for review. I found this when wrote patches for removing deprecated features. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker

[issue27063] Some unittest loader tests are silently skipped by mistake

2016-05-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset e715ffd2d938 by Serhiy Storchaka in branch '3.5': Issue #27063: Some unittest loader tests were silently skipped. https://hg.python.org/cpython/rev/e715ffd2d938 New changeset f4f615edb6b1 by Serhiy Storchaka in branch 'default': Issue #27063: Some u

[issue27063] Some unittest loader tests are silently skipped by mistake

2016-05-20 Thread Robert Collins
Robert Collins added the comment: LGTM too -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue27063] Some unittest loader tests are silently skipped by mistake

2016-05-20 Thread Berker Peksag
Berker Peksag added the comment: LGTM. Just curious, did you find it by reading code or by using some tool? -- nosy: +berker.peksag stage: patch review -> commit review ___ Python tracker __

[issue27063] Some unittest loader tests are silently skipped by mistake

2016-05-19 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Due to bug in the decorator some tests in Lib/unittest/test/test_loader.py are silently skipped. Proposed patch fixes this as well as other bugs in the decorator and tests. -- components: Tests files: test_loader.patch keywords: patch messages: 265