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

        issue9215
        review389851002
diffstat:

 setup.py                                     |   6 +++---
 tests/__init__.py                            |   8 --------
 tests/test_account_invoice_secondary_unit.py |  19 -------------------
 tests/test_module.py                         |  12 ++++++++++++
 tox.ini                                      |   3 ++-
 5 files changed, 17 insertions(+), 31 deletions(-)

diffs (87 lines):

diff -r b664f86085c7 -r 493a1cdaa06d setup.py
--- a/setup.py  Sun Apr 10 19:11:37 2022 +0200
+++ b/setup.py  Sat Apr 16 18:30:16 2022 +0200
@@ -138,13 +138,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_invoice_secondary_unit = 
trytond.modules.account_invoice_secondary_unit
     """,  # noqa: E501
-    test_suite='tests',
-    test_loader='trytond.test_loader:Loader',
-    tests_require=tests_require,
     )
diff -r b664f86085c7 -r 493a1cdaa06d 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,10 +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_invoice_secondary_unit.tests.test_account_invoice_secondary_unit
 import \
-        suite  # noqa: E501
-except ImportError:
-    from .test_account_invoice_secondary_unit import suite
-
-__all__ = ['suite']
diff -r b664f86085c7 -r 493a1cdaa06d 
tests/test_account_invoice_secondary_unit.py
--- a/tests/test_account_invoice_secondary_unit.py      Sun Apr 10 19:11:37 
2022 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +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.tests.test_tryton import ModuleTestCase
-from trytond.tests.test_tryton import suite as test_suite
-
-
-class AccountInvoiceSecondaryUnitTestCase(ModuleTestCase):
-    'Test Account Invoice Secondary Unit module'
-    module = 'account_invoice_secondary_unit'
-
-
-def suite():
-    suite = test_suite()
-    suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
-            AccountInvoiceSecondaryUnitTestCase))
-    return suite
diff -r b664f86085c7 -r 493a1cdaa06d 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,12 @@
+# 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.tests.test_tryton import ModuleTestCase
+
+
+class AccountInvoiceSecondaryUnitTestCase(ModuleTestCase):
+    'Test Account Invoice Secondary Unit module'
+    module = 'account_invoice_secondary_unit'
+
+
+del ModuleTestCase
diff -r b664f86085c7 -r 493a1cdaa06d 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_invoice_secondary_unit/* setup.py test
+    coverage run --include=.*/account_invoice_secondary_unit/* -m unittest 
discover -s tests
     coverage report --include=.*/account_invoice_secondary_unit/* 
--omit=*/tests/*
 deps =
     coverage

Reply via email to