Commit eda144a2 authored by Vincent Pelletier's avatar Vincent Pelletier

Reorder business template installation to make more sense regarding dependencies.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19372 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent dfb94ff2
......@@ -310,7 +310,7 @@ class ERP5TypeTestCase(PortalTestCase):
update_business_templates = os.environ.get('update_business_templates') is not None
erp5_load_data_fs = os.environ.get('erp5_load_data_fs') is not None
if update_business_templates and erp5_load_data_fs:
template_list = ('erp5_core', 'erp5_xhtml_style', erp5_catalog_storage) + tuple(template_list)
template_list = (erp5_catalog_storage, 'erp5_core', 'erp5_xhtml_style') + tuple(template_list)
new_template_list = []
for template in template_list:
id = template.split('/')[-1]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment