From 788ffb83737ffdf15aeadb2fd2e864e438a455c6 Mon Sep 17 00:00:00 2001 From: Enric Tobella Date: Tue, 4 Jun 2019 23:31:15 +0200 Subject: [PATCH] [FIX] base_optional_quick_create: Add tests as post_install --- base_optional_quick_create/tests/test_quick_create.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/base_optional_quick_create/tests/test_quick_create.py b/base_optional_quick_create/tests/test_quick_create.py index e28f247..7df4570 100644 --- a/base_optional_quick_create/tests/test_quick_create.py +++ b/base_optional_quick_create/tests/test_quick_create.py @@ -1,10 +1,12 @@ # Copyright 2018 Simone Rubino - Agile Business Group # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). - +from odoo.tests import common from odoo.exceptions import UserError from odoo.tests.common import TransactionCase +@common.at_install(False) +@common.post_install(True) class TestQuickCreate(TransactionCase): def setUp(self, *args, **kwargs):