diff --git a/test_themes/tests/__init__.py b/test_themes/tests/__init__.py index 9c8587923..d8feb8d8b 100644 --- a/test_themes/tests/__init__.py +++ b/test_themes/tests/__init__.py @@ -1,7 +1,11 @@ # -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. +# The order of these tests is important, as the last one will uninstall this +# module. Ideally, the tests would be independent from one another but for now, +# ensure this order. from . import test_crawl from . import test_new_page_templates -from . import test_theme_standalone from . import test_theme_upgrade +# This test should be last. +from . import test_theme_standalone