Odoo18-Base/addons/test_mail/__manifest__.py
2025-01-06 10:57:38 +07:00

34 lines
925 B
Python

# -*- coding: utf-8 -*-
{
'name': 'Mail Tests',
'version': '1.0',
'category': 'Hidden',
'sequence': 9876,
'summary': 'Mail Tests: performances and tests specific to mail',
'description': """This module contains tests related to mail. Those are
present in a separate module as it contains models used only to perform
tests independently to functional aspects of other models. """,
'depends': [
'mail',
'test_performance',
],
'data': [
'security/ir.model.access.csv',
'security/test_mail_security.xml',
'data/data.xml',
'data/mail_template_data.xml',
'data/subtype_data.xml',
],
'assets': {
'web.assets_unit_tests': [
'test_mail/static/tests/**/*',
],
'web.assets_tests': [
'test_mail/static/tests/tours/*',
],
},
'installable': True,
'license': 'LGPL-3',
}