[MERGE] trunk

bzr revid: openerp-sle@openerp-sle.home-20140217153601-75znvem3gez24ycs
This commit is contained in:
openerp-sle 2014-02-17 16:36:01 +01:00
commit 0b7351da20
1 changed files with 2 additions and 1 deletions

View File

@ -333,7 +333,8 @@ def get_test_modules(module):
# include submodules too
result = [mod_obj for name, mod_obj in sys.modules.iteritems()
if mod_obj # mod_obj can be None
if name.startswith(module)]
if name.startswith(module)
if re.search(r'test_\w+$', name)]
return result
# Use a custom stream object to log the test executions.