diff --git a/sale_advance_payment/tests/test_sale_advance_payment.py b/sale_advance_payment/tests/test_sale_advance_payment.py index bb7650f75e3..c83b08b5412 100644 --- a/sale_advance_payment/tests/test_sale_advance_payment.py +++ b/sale_advance_payment/tests/test_sale_advance_payment.py @@ -4,9 +4,10 @@ from odoo import fields from odoo.exceptions import ValidationError -from odoo.tests import common +from odoo.tests import common, tagged +@tagged("post_install", "-at_install") class TestSaleAdvancePayment(common.TransactionCase): @classmethod def setUpClass(cls): diff --git a/sale_automatic_workflow_payment_mode/tests/test_automatic_workflow_payment_mode.py b/sale_automatic_workflow_payment_mode/tests/test_automatic_workflow_payment_mode.py index 525c3a708b3..44b05d02884 100644 --- a/sale_automatic_workflow_payment_mode/tests/test_automatic_workflow_payment_mode.py +++ b/sale_automatic_workflow_payment_mode/tests/test_automatic_workflow_payment_mode.py @@ -2,6 +2,8 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from unittest.mock import patch +from odoo.tests import tagged + from odoo.addons.account.models.account_payment_method import AccountPaymentMethod from odoo.addons.sale_automatic_workflow.tests.common import ( TestAutomaticWorkflowMixin, @@ -9,6 +11,7 @@ ) +@tagged("post_install", "-at_install") class TestAutomaticWorkflowPaymentMode(TestCommon, TestAutomaticWorkflowMixin): @classmethod def setUpClass(cls):