Merge PR #876 into 14.0

Signed-off-by rousseldenis
This commit is contained in:
OCA-git-bot
2022-09-26 13:30:05 +00:00
3 changed files with 7 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ from dateutil.relativedelta import relativedelta
from odoo import fields
from odoo.exceptions import UserError, ValidationError
from odoo.tests import Form, common
from odoo.tests import Form, common, tagged
def to_date(date):
@@ -191,6 +191,7 @@ class TestContractBase(common.SavepointCase):
return cls.uom_obj.create(vals)
@tagged("post_install", "-at_install")
class TestContract(TestContractBase):
def _add_template_line(self, overrides=None):
if overrides is None:

View File

@@ -5,10 +5,12 @@
from odoo.exceptions import UserError
from odoo.tests import tagged
from .test_contract import TestContractBase
@tagged("post_install", "-at_install")
class TestContractManuallyCreateInvoice(TestContractBase):
@classmethod
def setUpClass(cls):

View File

@@ -1,9 +1,12 @@
# Copyright 2021 ACSONE SA/NV (<http://acsone.eu>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo.tests import tagged
from .test_contract import TestContractBase
@tagged("post_install", "-at_install")
class ContractMulticompanyCase(TestContractBase):
@classmethod
def setUpClass(cls):