From e5462628d3c462d18134aeb2288e50da88a3b6e0 Mon Sep 17 00:00:00 2001 From: Carlos Dauden Date: Tue, 10 May 2022 11:03:50 +0200 Subject: [PATCH] [FIX] account_financial_report: Tests post_install to avoid CI issues --- account_financial_report/tests/test_trial_balance.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/account_financial_report/tests/test_trial_balance.py b/account_financial_report/tests/test_trial_balance.py index ac41dc3d..5a2f8298 100644 --- a/account_financial_report/tests/test_trial_balance.py +++ b/account_financial_report/tests/test_trial_balance.py @@ -3,9 +3,10 @@ # Copyright 2020 ForgeFlow S.L. (https://www.forgeflow.com) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from odoo.tests import common +from odoo.tests import common, tagged +@tagged("post_install", "-at_install") class TestTrialBalanceReport(common.TransactionCase): def setUp(self): super(TestTrialBalanceReport, self).setUp()