[IMP] addons: changed test section to only run in demo mode

bzr revid: odo@openerp.com-20100616154946-aeosrnkn7wvjyhwn
This commit is contained in:
Olivier Dony 2010-06-16 17:49:46 +02:00
parent 6747bdc080
commit 96f01fe1c4
1 changed files with 6 additions and 2 deletions

View File

@ -729,8 +729,12 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs):
load_demo_xml(cr, m, idref, mode)
load_demo(cr, m, idref, mode)
cr.execute('update ir_module_module set demo=%s where id=%s', (True, mid))
load_test(cr, m, idref, mode)
# launch tests only in demo mode, as most tests will depend
# on demo data. Other tests can be added into the regular
# 'data' section, but should probably not alter the data,
# as there is no rollback.
load_test(cr, m, idref, mode)
package_todo.append(package.name)