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

40 lines
1.1 KiB
Python

# -*- coding: utf-8 -*-
{
'name': 'Mail Tests (Full)',
'version': '1.0',
'category': 'Hidden',
'sequence': 9876,
'summary': 'Mail Tests: performances and tests specific to mail with all sub-modules',
'description': """This module contains tests related to various mail features
and mail-related sub modules. Those tests are present in a separate module as it
contains models used only to perform tests independently to functional aspects of
real applications. """,
'depends': [
'mail',
'mail_bot',
'portal',
'rating',
# 'snailmail',
'mass_mailing',
'mass_mailing_sms', # adds portal
'phone_validation',
'sms',
'test_mail',
'test_mail_sms',
'test_mass_mailing',
],
'data': [
'data/mail_message_subtype_data.xml',
'security/ir.model.access.csv',
'security/ir_rule_data.xml',
],
'assets': {
'web.assets_unit_tests': [
'test_mail_full/static/tests/**/*',
],
},
'installable': True,
'license': 'LGPL-3',
}