Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Adding tags to unittests for account_brand and sale_brand #128

Merged
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_brand/tests/test_account_analytic_move.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Copyright 2019 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo.tests import tagged
from odoo.tests.common import SavepointCase


@tagged("post_install", "-at_install")
class TestAccountAnalyticMove(SavepointCase):
def setUp(self):
super().setUp()
Expand Down
2 changes: 2 additions & 0 deletions account_brand/tests/test_account_move.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Copyright 2019 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo.tests import tagged
from odoo.tests.common import SavepointCase


@tagged("post_install", "-at_install")
class TestAccountMove(SavepointCase):
def setUp(self):
super(TestAccountMove, self).setUp()
Expand Down
2 changes: 2 additions & 0 deletions account_brand/tests/test_brand_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from lxml import etree

from odoo.exceptions import ValidationError
from odoo.tests import tagged
from odoo.tests.common import Form, TransactionCase

from odoo.addons.brand.models.res_company import (
Expand All @@ -12,6 +13,7 @@
)


@tagged("post_install", "-at_install")
class TestBrandMixin(TransactionCase):
def setUp(self):
super(TestBrandMixin, self).setUp()
Expand Down
2 changes: 2 additions & 0 deletions sale_brand/tests/test_sale_order.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Copyright 2019 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo.tests import tagged
from odoo.tests.common import TransactionCase


@tagged("post_install", "-at_install")
class TestSaleOrder(TransactionCase):
def setUp(self):
super(TestSaleOrder, self).setUp()
Expand Down