mirror of
https://github.com/bringout/oca-ocb-test.git
synced 2026-04-23 02:02:09 +02:00
Initial commit: Test packages
This commit is contained in:
commit
080accd21c
338 changed files with 32413 additions and 0 deletions
|
|
@ -0,0 +1,44 @@
|
|||
# -*- 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': [
|
||||
'views/templates.xml',
|
||||
'views/test_model_multi_website_views.xml',
|
||||
'views/test_model_views.xml',
|
||||
'data/test_website_data.xml',
|
||||
'security/test_website_security.xml',
|
||||
'security/ir.model.access.csv',
|
||||
],
|
||||
'installable': True,
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'test_website/static/src/js/test_error.js',
|
||||
],
|
||||
'web.assets_tests': [
|
||||
'test_website/static/tests/tours/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'test_website/static/tests/*.js',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue