From 230ca5dca818877d74acfe94d02cbe3a1a95aaad Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Mon, 18 Apr 2022 09:57:38 +0200 Subject: [PATCH] [FIX] account_reconcile_payment_order: Run tests post-install Since https://github.com/odoo/odoo/commit/81aac30dd2278e43a43cf8fd6cef31e1e8c60f3f, all tests inheriting from AccountTestInvoicingCommon must be post-install. --- .../tests/test_account_reconcile_payment_order.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/account_reconcile_payment_order/tests/test_account_reconcile_payment_order.py b/account_reconcile_payment_order/tests/test_account_reconcile_payment_order.py index 76857ed6..77824076 100644 --- a/account_reconcile_payment_order/tests/test_account_reconcile_payment_order.py +++ b/account_reconcile_payment_order/tests/test_account_reconcile_payment_order.py @@ -2,11 +2,14 @@ # Copyright 2021 Tecnativa - João Marques # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html +import odoo.tests + from odoo.addons.account_payment_order.tests.test_payment_order_inbound import ( TestPaymentOrderInboundBase, ) +@odoo.tests.tagged("post_install", "-at_install") class TestAccountReconcilePaymentOrder(TestPaymentOrderInboundBase): @classmethod def setUpClass(cls):