__manifest__.py 908 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Test Full eLearning Flow',
  5. 'version': '1.0',
  6. 'category': 'Hidden/Tests',
  7. 'description': """
  8. This module will test the main certification flow of Odoo.
  9. It will install the e-learning, survey and e-commerce apps and make a complete
  10. certification flow including purchase, certification, failure and success.
  11. """,
  12. 'depends': [
  13. 'website_sale_product_configurator',
  14. 'website_sale_slides',
  15. 'website_slides_forum',
  16. 'website_slides_survey',
  17. 'payment_demo'
  18. ],
  19. 'data': [
  20. 'data/res_groups_data.xml',
  21. ],
  22. 'demo': [
  23. 'data/product_demo.xml',
  24. ],
  25. 'installable': True,
  26. 'assets': {
  27. 'web.assets_tests': [
  28. 'test_website_slides_full/tests/tours/**/*',
  29. ],
  30. },
  31. 'license': 'LGPL-3',
  32. }