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

        issue9215
        review389851002
diffstat:

 setup.py                       |   6 +++---
 tests/__init__.py              |   8 --------
 tests/test_analytic_invoice.py |  29 -----------------------------
 tests/test_module.py           |  13 +++++++++++++
 tests/test_scenario.py         |  22 ++++++++++++++++++++++
 tox.ini                        |   3 ++-
 6 files changed, 40 insertions(+), 41 deletions(-)

diffs (124 lines):

diff -r f93ac65495a2 -r b198b8496160 setup.py
--- a/setup.py  Mon Apr 11 22:29:29 2022 +0200
+++ b/setup.py  Sat Apr 16 18:30:17 2022 +0200
@@ -139,13 +139,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]
     analytic_invoice = trytond.modules.analytic_invoice
     """,
-    test_suite='tests',
-    test_loader='trytond.test_loader:Loader',
-    tests_require=tests_require,
     )
diff -r f93ac65495a2 -r b198b8496160 tests/__init__.py
--- a/tests/__init__.py Mon Apr 11 22:29:29 2022 +0200
+++ b/tests/__init__.py Sat Apr 16 18:30:17 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.analytic_invoice.tests.test_analytic_invoice import \
-        suite  # noqa: E501
-except ImportError:
-    from .test_analytic_invoice import suite
-
-__all__ = ['suite']
diff -r f93ac65495a2 -r b198b8496160 tests/test_analytic_invoice.py
--- a/tests/test_analytic_invoice.py    Mon Apr 11 22:29:29 2022 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +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 doctest
-import unittest
-
-import trytond.tests.test_tryton
-from trytond.tests.test_tryton import (
-    ModuleTestCase, doctest_checker, doctest_teardown)
-
-
-class AnalyticInvoiceTestCase(ModuleTestCase):
-    'Test AnalyticInvoice module'
-    module = 'analytic_invoice'
-    extras = ['account_asset']
-
-
-def suite():
-    suite = trytond.tests.test_tryton.suite()
-    suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
-        AnalyticInvoiceTestCase))
-    suite.addTests(doctest.DocFileSuite('scenario_analytic_invoice.rst',
-            tearDown=doctest_teardown, encoding='utf-8',
-            checker=doctest_checker,
-            optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
-    suite.addTests(doctest.DocFileSuite('scenario_analytic_invoice_asset.rst',
-            tearDown=doctest_teardown, encoding='utf-8',
-            checker=doctest_checker,
-            optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
-    return suite
diff -r f93ac65495a2 -r b198b8496160 tests/test_module.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test_module.py      Sat Apr 16 18:30:17 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.tests.test_tryton import ModuleTestCase
+
+
+class AnalyticInvoiceTestCase(ModuleTestCase):
+    'Test AnalyticInvoice module'
+    module = 'analytic_invoice'
+    extras = ['account_asset']
+
+
+del ModuleTestCase
diff -r f93ac65495a2 -r b198b8496160 tests/test_scenario.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test_scenario.py    Sat Apr 16 18:30:17 2022 +0200
@@ -0,0 +1,22 @@
+# 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 doctest
+import glob
+import os
+
+from trytond.tests.test_tryton import doctest_checker, doctest_teardown
+
+
+def load_tests(loader, tests, pattern):
+    cwd = os.getcwd()
+    try:
+        os.chdir(os.path.dirname(__file__))
+        for scenario in glob.glob('*.rst'):
+            tests.addTests(doctest.DocFileSuite(
+                    scenario, tearDown=doctest_teardown, encoding='utf-8',
+                    checker=doctest_checker,
+                    optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
+    finally:
+        os.chdir(cwd)
+    return tests
diff -r f93ac65495a2 -r b198b8496160 tox.ini
--- a/tox.ini   Mon Apr 11 22:29:29 2022 +0200
+++ b/tox.ini   Sat Apr 16 18:30:17 2022 +0200
@@ -2,8 +2,9 @@
 envlist = {py37,py38,py39,py310}-{sqlite,postgresql}
 
 [testenv]
+extras = test
 commands =
-    coverage run --include=.*/analytic_invoice/* setup.py test
+    coverage run --include=.*/analytic_invoice/* -m unittest discover -s tests
     coverage report --include=.*/analytic_invoice/* --omit=*/tests/*
 deps =
     coverage

Reply via email to