From 1416e8d12c6b744eed9761eb658a97776a19fd8f Mon Sep 17 00:00:00 2001 From: Florian da Costa Date: Tue, 18 Apr 2023 16:37:48 +0200 Subject: [PATCH] [FIX] Playing test after install must not be mandatory anymore because there is no post install hook anymore --- module_analysis/tests/test_module.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/module_analysis/tests/test_module.py b/module_analysis/tests/test_module.py index c54688cb2..20f96fc3f 100644 --- a/module_analysis/tests/test_module.py +++ b/module_analysis/tests/test_module.py @@ -2,11 +2,9 @@ # @author: Sylvain LE GAL (https://twitter.com/legalsylvain) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from odoo.tests.common import TransactionCase, at_install, post_install +from odoo.tests.common import TransactionCase -@at_install(False) -@post_install(True) class TestModule(TransactionCase): def setUp(self): super().setUp()