50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Website Test',
|
|
'version': '1.0',
|
|
'category': 'Hidden',
|
|
'sequence': 9876,
|
|
'summary': 'Website Test, mainly for module install/uninstall tests',
|
|
'description': """This module contains tests related to website. Those are
|
|
present in a separate module as we are testing module install/uninstall/upgrade
|
|
and we don't want to reload the website module every time, including it's possible
|
|
dependencies. Neither we want to add in website module some routes, views and
|
|
models which only purpose is to run tests.""",
|
|
'depends': [
|
|
'web_unsplash',
|
|
'website',
|
|
'theme_default',
|
|
],
|
|
'demo': [
|
|
'data/test_website_demo.xml',
|
|
],
|
|
'data': [
|
|
'security/test_website_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/templates.xml',
|
|
'views/test_model_multi_website_views.xml',
|
|
'views/test_model_views.xml',
|
|
'data/test_website_data.xml',
|
|
],
|
|
'installable': True,
|
|
'assets': {
|
|
'test_website.test_bundle': [
|
|
'http://test.external.link/javascript1.js',
|
|
'/web/static/src/libs/fontawesome/css/font-awesome.css',
|
|
'http://test.external.link/style1.css',
|
|
'/web/static/src/module_loader.js',
|
|
'http://test.external.link/javascript2.js',
|
|
'http://test.external.link/style2.css',
|
|
],
|
|
'web.assets_frontend': [
|
|
'test_website/static/src/js/test_error.js',
|
|
],
|
|
'web.assets_tests': [
|
|
'test_website/static/tests/tours/*',
|
|
],
|
|
},
|
|
'license': 'LGPL-3',
|
|
}
|