From d18c47177d57ead2bfe90001f6d853009c71c502 Mon Sep 17 00:00:00 2001 From: Michael Tietz Date: Sat, 17 Sep 2022 21:53:03 +0200 Subject: [PATCH] [FIX] account_invoice_check_total: Proper tagging of unittests --- account_invoice_check_total/tests/test_account_invoice.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/account_invoice_check_total/tests/test_account_invoice.py b/account_invoice_check_total/tests/test_account_invoice.py index a6c14fb5534..7ab85c2160d 100644 --- a/account_invoice_check_total/tests/test_account_invoice.py +++ b/account_invoice_check_total/tests/test_account_invoice.py @@ -2,11 +2,12 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo.exceptions import ValidationError -from odoo.tests import Form, SavepointCase +from odoo.tests import Form, SavepointCase, tagged from ..models.account_move import GROUP_AICT +@tagged("post_install", "-at_install") class TestAccountInvoice(SavepointCase): @classmethod def setUpClass(cls):