2021-08-09 20:10:40 +02:00
|
|
|
# Copyright 2021 Camptocamp (http://www.camptocamp.com).
|
|
|
|
# @author Iván Todorovich <ivan.todorovich@gmail.com>
|
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
|
|
{
|
|
|
|
"name": "Mail Autosubscribe",
|
|
|
|
"summary": "Automatically subscribe partners to its company's business documents",
|
2022-07-21 08:32:31 +02:00
|
|
|
"version": "15.0.1.0.3",
|
2021-08-09 20:10:40 +02:00
|
|
|
"author": "Camptocamp SA, Odoo Community Association (OCA)",
|
|
|
|
"license": "AGPL-3",
|
|
|
|
"category": "Marketing",
|
|
|
|
"depends": ["mail"],
|
[FIX] mail_autosubscribe: missing dependency
This should fix the tests, that are currently failing on CI with:
```
2022-07-05 16:19:13,250 259 INFO odoo odoo.service.server: Starting post tests
2022-07-05 16:19:13,253 259 ERROR odoo odoo.tests.loader: Can not `import mail_autosubscribe`.
Traceback (most recent call last):
File "/opt/odoo/odoo/tests/loader.py", line 33, in _get_tests_modules
mod = importlib.import_module('.tests', modpath)
File "/usr/lib/python3.8/importlib/__init__.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
File "<frozen importlib._bootstrap>", line 991, in _find_and_load
File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 671, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/__w/social/social/mail_autosubscribe/tests/__init__.py", line 1, in <module>
from . import test_mail_autosubscribe
File "/__w/social/social/mail_autosubscribe/tests/test_mail_autosubscribe.py", line 5, in <module>
from odoo_test_helper import FakeModelLoader
ModuleNotFoundError: No module named 'odoo_test_helper'
```
2022-07-07 09:20:18 +02:00
|
|
|
"external_dependencies": {
|
|
|
|
"python": ["odoo_test_helper"],
|
|
|
|
},
|
2021-08-09 20:10:40 +02:00
|
|
|
"website": "https://github.com/OCA/social",
|
|
|
|
"data": [
|
|
|
|
"security/ir.model.access.csv",
|
|
|
|
"views/mail_autosubscribe.xml",
|
|
|
|
"views/mail_template.xml",
|
|
|
|
"views/res_partner.xml",
|
|
|
|
],
|
|
|
|
}
|