[issue8315] ./python -m unittest test.test_importlib doesn't work

2014-09-07 Thread Berker Peksag
Berker Peksag added the comment: test_importlib has been fixed in issue 22002. $ ./python -m unittest test.test_importlib -- Ran 963 tests in 1.533s OK (skipped=15, expected failures=1) -- nosy: +berke

[issue8315] ./python -m unittest test.test_importlib doesn't work

2012-03-13 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue8315] ./python -m unittest test.test_importlib doesn't work

2012-03-13 Thread R. David Murray
R. David Murray added the comment: I fixed this for test_email by adding automatic unit test discovery to test_email.__init__. I believe it should be possible for a similar thing to do be done for test_importlib. -- nosy: +r.david.murray ___ Pytho

[issue8315] ./python -m unittest test.test_importlib doesn't work

2012-03-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset 217fdeeaf6e0 by R David Murray in branch 'default': #8315: add automatic unittest test discovery in test.test_email http://hg.python.org/cpython/rev/217fdeeaf6e0 -- nosy: +python-dev ___ Python tracker

[issue8315] ./python -m unittest test.test_importlib doesn't work

2010-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue8315] ./python -m unittest test.test_importlib doesn't work

2010-08-05 Thread Michael Foord
Michael Foord added the comment: I'd still like to see this fixed. Some of the features of regrtest will need to be implemented as plugins for unittest (but not many - a lot of the features of regrtest are already obsolete). -- ___ Python tracker

[issue8315] ./python -m unittest test.test_importlib doesn't work

2010-08-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am just responding so this will not show up on the 'unanswered issues' list. -- nosy: +terry.reedy ___ Python tracker ___

[issue8315] ./python -m unittest test.test_importlib doesn't work

2010-04-05 Thread Barry A. Warsaw
New submission from Barry A. Warsaw : Actually, ./python -m unittest test.test_email doesn't work either and those are two cases where the Lib/test module just forwards to the package's own test suite, so maybe that's the problem. -- assignee: michael.foord components: Library (Lib) me