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

        issue9215
        review389851002
diffstat:

 setup.py                                |   6 +++---
 tests/__init__.py                       |   8 --------
 tests/test_account_invoice_watermark.py |  28 ----------------------------
 tests/test_module.py                    |  12 ++++++++++++
 tests/test_scenario.py                  |  24 ++++++++++++++++++++++++
 tox.ini                                 |   3 ++-
 6 files changed, 41 insertions(+), 40 deletions(-)

diffs (124 lines):

diff -r 66a1fb595de2 -r 9f5337632c01 setup.py
--- a/setup.py  Sun Apr 10 19:11:37 2022 +0200
+++ b/setup.py  Sat Apr 16 18:30:16 2022 +0200
@@ -146,13 +146,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_watermark = trytond.modules.account_invoice_watermark
     """,  # noqa: E501
-    test_suite='tests',
-    test_loader='trytond.test_loader:Loader',
-    tests_require=tests_require,
     )
diff -r 66a1fb595de2 -r 9f5337632c01 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_watermark.tests.test_account_invoice_watermark 
import \
-        suite  # noqa: E501
-except ImportError:
-    from .test_account_invoice_watermark import suite
-
-__all__ = ['suite']
diff -r 66a1fb595de2 -r 9f5337632c01 tests/test_account_invoice_watermark.py
--- a/tests/test_account_invoice_watermark.py   Sun Apr 10 19:11:37 2022 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +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 shutil
-import unittest
-
-from trytond.tests.test_tryton import (
-    ModuleTestCase, doctest_checker, doctest_teardown)
-from trytond.tests.test_tryton import suite as test_suite
-
-
-class AccountInvoiceWatermarkTestCase(ModuleTestCase):
-    'Test Account Invoice Watermark module'
-    module = 'account_invoice_watermark'
-
-
-def suite():
-    suite = test_suite()
-    suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
-            AccountInvoiceWatermarkTestCase))
-    if shutil.which('soffice') and shutil.which('mutool'):
-        suite.addTests(doctest.DocFileSuite(
-                'scenario_account_invoice_watermark.rst',
-                tearDown=doctest_teardown, encoding='utf-8',
-                checker=doctest_checker,
-                optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
-    return suite
diff -r 66a1fb595de2 -r 9f5337632c01 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 AccountInvoiceWatermarkTestCase(ModuleTestCase):
+    'Test Account Invoice Watermark module'
+    module = 'account_invoice_watermark'
+
+
+del ModuleTestCase
diff -r 66a1fb595de2 -r 9f5337632c01 tests/test_scenario.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test_scenario.py    Sat Apr 16 18:30:16 2022 +0200
@@ -0,0 +1,24 @@
+# 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
+import shutil
+
+from trytond.tests.test_tryton import doctest_checker, doctest_teardown
+
+
+def load_tests(loader, tests, pattern):
+    if shutil.which('soffice') and shutil.which('mutool'):
+        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 66a1fb595de2 -r 9f5337632c01 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/* setup.py test
+    coverage run --include=.*/account_invoice/* -m unittest discover -s tests
     coverage report --include=.*/account_invoice/* --omit=*/tests/*
 deps =
     coverage

Reply via email to