__manifest__.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # -*- encoding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Website Test',
  5. 'version': '1.0',
  6. 'category': 'Hidden',
  7. 'sequence': 9876,
  8. 'summary': 'Website Test, mainly for module install/uninstall tests',
  9. 'description': """This module contains tests related to website. Those are
  10. present in a separate module as we are testing module install/uninstall/upgrade
  11. and we don't want to reload the website module every time, including it's possible
  12. dependencies. Neither we want to add in website module some routes, views and
  13. models which only purpose is to run tests.""",
  14. 'depends': [
  15. 'web_unsplash',
  16. 'website',
  17. 'theme_default',
  18. ],
  19. 'data': [
  20. 'views/templates.xml',
  21. 'data/test_website_data.xml',
  22. 'security/ir.model.access.csv',
  23. ],
  24. 'installable': True,
  25. 'assets': {
  26. 'web.assets_frontend': [
  27. 'test_website/static/src/js/test_error.js',
  28. ],
  29. 'web.assets_tests': [
  30. 'test_website/static/tests/tours/*',
  31. ],
  32. 'web.qunit_suite_tests': [
  33. 'test_website/static/tests/*.js',
  34. ],
  35. },
  36. 'license': 'LGPL-3',
  37. }