[issue21500] Make use of the "load_tests" protocol in test_importlib packages

2014-07-23 Thread Zachary Ware
Zachary Ware added the comment: This has been covered by #22002. -- nosy: +zach.ware resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> Make full use of test discovery in test subpackages ___ Python tracker

[issue21500] Make use of the "load_tests" protocol in test_importlib packages

2014-05-30 Thread R. David Murray
R. David Murray added the comment: Personally I think the fact that this doesn't work by default is a bug in unittest. See issue 15007. Issue 16662 may also be related. -- nosy: +r.david.murray ___ Python tracker

[issue21500] Make use of the "load_tests" protocol in test_importlib packages

2014-05-13 Thread Eric Snow
New submission from Eric Snow: Right now to run importlib tests you can do either of the following: ./python -m tests test_importlib ./python -m tests.test_importlib Both make use of the regrtest infrastructure. For test submodules the commands are similar: ./python -m tests test_importlib.t