Browse Source
Merge pull request #1159 from onesteinbv/11_fix_base_exception_test
[11.0][FIX] base_exception: enable post_install for tests
pull/1162/head
Pedro M. Baeza
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
1 deletions
-
base_exception/tests/common.py
-
base_exception/tests/test_base_exception.py
|
|
@ -1,4 +1,3 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
# Copyright 2017 ACSONE SA/NV (<http://acsone.eu>) |
|
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). |
|
|
|
|
|
|
|
|
|
@ -9,6 +9,8 @@ import logging |
|
|
|
_logger = logging.getLogger(__name__) |
|
|
|
|
|
|
|
|
|
|
|
@common.at_install(False) |
|
|
|
@common.post_install(True) |
|
|
|
class TestBaseException(common.SavepointCase): |
|
|
|
|
|
|
|
# pylint: disable=missing-return |
|
|
|