Skip to content

Commit

Permalink
Merge PR #876 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by rousseldenis
  • Loading branch information
OCA-git-bot committed Sep 26, 2022
2 parents bd786d8 + 14bf20e commit 39947d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contract/tests/test_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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):
Expand Down Expand Up @@ -191,6 +191,7 @@ def _create_uom(cls):
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:
Expand Down
2 changes: 2 additions & 0 deletions contract/tests/test_contract_manually_create_invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
3 changes: 3 additions & 0 deletions contract/tests/test_multicompany.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down

0 comments on commit 39947d3

Please sign in to comment.