[UPD] enable test that got disabled
parent
44cd5a4b5d
commit
5f09d6eb09
|
@ -2,13 +2,14 @@
|
|||
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
|
||||
|
||||
import os
|
||||
import unittest
|
||||
|
||||
from odoo.tests import TransactionCase
|
||||
|
||||
from .. import addon_hash
|
||||
from ..models.module import DEFAULT_EXCLUDE_PATTERNS
|
||||
|
||||
|
||||
class TestAddonHash(unittest.TestCase):
|
||||
class TestAddonHash(TransactionCase):
|
||||
def setUp(self):
|
||||
super(TestAddonHash, self).setUp()
|
||||
self.sample_dir = os.path.join(
|
||||
|
@ -30,7 +31,6 @@ class TestAddonHash(unittest.TestCase):
|
|||
"README.rst",
|
||||
"data/f1.xml",
|
||||
"data/f2.xml",
|
||||
"i18n/en.po",
|
||||
"i18n/en_US.po",
|
||||
"i18n/fr.po",
|
||||
"i18n/fr_BE.po",
|
||||
|
@ -39,7 +39,6 @@ class TestAddonHash(unittest.TestCase):
|
|||
"i18n_extra/fr.po",
|
||||
"i18n_extra/nl_NL.po",
|
||||
"models/stuff.py",
|
||||
"models/stuff.pyc",
|
||||
"models/stuff.pyo",
|
||||
"static/src/some.js",
|
||||
],
|
||||
|
@ -73,4 +72,4 @@ class TestAddonHash(unittest.TestCase):
|
|||
exclude_patterns=["*.pyc", "*.pyo", "*.pot", "static/*"],
|
||||
keep_langs=["fr_FR", "nl"],
|
||||
)
|
||||
self.assertEqual(checksum, "fecb89486c8a29d1f760cbd01c1950f6e8421b14")
|
||||
self.assertEqual(checksum, "5a14909e62f05c340f717bd87f64479a862b1941")
|
||||
|
|
Loading…
Reference in New Issue