__manifest__.py 670 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Test Full Crm Flow',
  5. 'version': '1.0',
  6. 'category': 'Hidden/Tests',
  7. 'description': """
  8. This module is intended to test the main crm flows of Odoo, both frontend and
  9. backend. It notably includes IAP bridges modules to test their impact. """,
  10. 'depends': [
  11. 'crm',
  12. 'crm_iap_enrich',
  13. 'crm_iap_mine',
  14. 'crm_sms',
  15. 'event_crm',
  16. 'sale_crm',
  17. 'website_crm',
  18. 'website_crm_iap_reveal',
  19. 'website_crm_partner_assign',
  20. 'website_crm_livechat',
  21. ],
  22. 'license': 'LGPL-3',
  23. }