[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:

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

2012-03-13 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za 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

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

2012-03-13 Thread R. David Murray
R. David Murray rdmur...@bitdance.com 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

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

2012-03-13 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8315 ___ ___ Python-bugs-list

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

2010-11-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8315 ___ ___ Python-bugs-list

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

2010-08-05 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: I am just responding so this will not show up on the 'unanswered issues' list. -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8315

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

2010-08-05 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk 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). --

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

2010-04-05 Thread Barry A. Warsaw
New submission from Barry A. Warsaw ba...@python.org: 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: