__manifest__.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Test Full Event Flow',
  5. 'version': '1.0',
  6. 'category': 'Hidden/Tests',
  7. 'description': """
  8. This module will test the main event flows of Odoo, both frontend and backend.
  9. It installs sale capabilities, front-end flow, eCommerce, questions and
  10. automatic lead generation, full Online support, ...
  11. """,
  12. 'depends': [
  13. 'event',
  14. 'event_booth',
  15. 'event_crm',
  16. 'event_crm_sale',
  17. 'event_sale',
  18. 'event_sms',
  19. 'payment_demo',
  20. 'website_event_booth_sale_exhibitor',
  21. 'website_event_crm_questions',
  22. 'website_event_exhibitor',
  23. 'website_event_questions',
  24. 'website_event_meet',
  25. 'website_event_sale',
  26. 'website_event_track',
  27. 'website_event_track_live',
  28. 'website_event_track_quiz',
  29. ],
  30. 'data': [
  31. # 'data/event_type_data.xml', # uncomment to reproduce test tour
  32. 'data/ir_actions_report_data.xml',
  33. 'views/event_registration_templates_reports.xml',
  34. ],
  35. 'assets': {
  36. 'web.assets_tests': [
  37. 'test_event_full/static/**/*',
  38. ],
  39. },
  40. 'license': 'LGPL-3',
  41. }