Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions account_payment_mode/tests/test_account_payment_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@

from odoo import Command
from odoo.exceptions import UserError, ValidationError
from odoo.tests import tagged

from odoo.addons.base.tests.common import BaseCommon


@tagged("post_install", "-at_install")
class TestAccountPaymentMode(BaseCommon):
@classmethod
def setUpClass(cls):
Expand Down
3 changes: 2 additions & 1 deletion account_payment_sale/tests/test_sale_order.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Copyright 2018 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo.tests import Form
from odoo.tests import Form, tagged

from .common import CommonTestCase


@tagged("post_install", "-at_install")
class TestSaleOrder(CommonTestCase):
@classmethod
def setUpClass(cls):
Expand Down