changeset 6398b9fbdf44 in modules/account_eu:default
details: 
https://hg.tryton.org/modules/account_eu?cmd=changeset&node=6398b9fbdf44
description:
        Replace test setuptools command by unittest discover

        issue9215
        review389851002
diffstat:

 setup.py                 |   6 +++---
 tests/__init__.py        |   7 -------
 tests/test_account_eu.py |  20 --------------------
 tests/test_module.py     |  13 +++++++++++++
 tox.ini                  |   3 ++-
 5 files changed, 18 insertions(+), 31 deletions(-)

diffs (88 lines):

diff -r 7d994ce6a2d6 -r 6398b9fbdf44 setup.py
--- a/setup.py  Sun Apr 10 19:11:37 2022 +0200
+++ b/setup.py  Sat Apr 16 18:30:16 2022 +0200
@@ -135,13 +135,13 @@
     license='GPL-3',
     python_requires='>=3.7',
     install_requires=requires,
+    extras_require={
+        'test': tests_require,
+        },
     dependency_links=dependency_links,
     zip_safe=False,
     entry_points="""
     [trytond.modules]
     account_eu = trytond.modules.account_eu
     """,
-    test_suite='tests',
-    test_loader='trytond.test_loader:Loader',
-    tests_require=tests_require,
     )
diff -r 7d994ce6a2d6 -r 6398b9fbdf44 tests/__init__.py
--- a/tests/__init__.py Sun Apr 10 19:11:37 2022 +0200
+++ b/tests/__init__.py Sat Apr 16 18:30:16 2022 +0200
@@ -1,9 +1,2 @@
 # This file is part of Tryton.  The COPYRIGHT file at the top level of
 # this repository contains the full copyright notices and license terms.
-
-try:
-    from trytond.modules.account_eu.tests.test_account_eu import suite
-except ImportError:
-    from .test_account_eu import suite
-
-__all__ = ['suite']
diff -r 7d994ce6a2d6 -r 6398b9fbdf44 tests/test_account_eu.py
--- a/tests/test_account_eu.py  Sun Apr 10 19:11:37 2022 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-# This file is part of Tryton.  The COPYRIGHT file at the top level of
-# this repository contains the full copyright notices and license terms.
-
-import unittest
-
-from trytond.modules.company.tests import CompanyTestMixin
-from trytond.tests.test_tryton import ModuleTestCase
-from trytond.tests.test_tryton import suite as test_suite
-
-
-class AccountEuTestCase(CompanyTestMixin, ModuleTestCase):
-    'Test Account Eu module'
-    module = 'account_eu'
-
-
-def suite():
-    suite = test_suite()
-    suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
-            AccountEuTestCase))
-    return suite
diff -r 7d994ce6a2d6 -r 6398b9fbdf44 tests/test_module.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test_module.py      Sat Apr 16 18:30:16 2022 +0200
@@ -0,0 +1,13 @@
+# This file is part of Tryton.  The COPYRIGHT file at the top level of
+# this repository contains the full copyright notices and license terms.
+
+from trytond.modules.company.tests import CompanyTestMixin
+from trytond.tests.test_tryton import ModuleTestCase
+
+
+class AccountEuTestCase(CompanyTestMixin, ModuleTestCase):
+    'Test Account Eu module'
+    module = 'account_eu'
+
+
+del ModuleTestCase
diff -r 7d994ce6a2d6 -r 6398b9fbdf44 tox.ini
--- a/tox.ini   Sun Apr 10 19:11:37 2022 +0200
+++ b/tox.ini   Sat Apr 16 18:30:16 2022 +0200
@@ -2,8 +2,9 @@
 envlist = {py37,py38,py39,py310}-{sqlite,postgresql}
 
 [testenv]
+extras = test
 commands =
-    coverage run --include=.*/account_eu/* setup.py test
+    coverage run --include=.*/account_eu/* -m unittest discover -s tests
     coverage report --include=.*/account_eu/* --omit=*/tests/*
 deps =
     coverage

Reply via email to