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

        issue9215
        review389851002
diffstat:

 setup.py                           |   2 --
 tests/__init__.py                  |   8 --------
 tests/test_module.py               |  12 ++++++++++++
 tests/test_product_measurements.py |  18 ------------------
 tox.ini                            |   2 +-
 5 files changed, 13 insertions(+), 29 deletions(-)

diffs (74 lines):

diff -r 0f4a8e027932 -r 75b7821ac713 setup.py
--- a/setup.py  Sun Apr 10 19:11:39 2022 +0200
+++ b/setup.py  Sat Apr 16 18:30:18 2022 +0200
@@ -143,6 +143,4 @@
     [trytond.modules]
     product_measurements = trytond.modules.product_measurements
     """,
-    test_suite='tests',
-    test_loader='trytond.test_loader:Loader',
     )
diff -r 0f4a8e027932 -r 75b7821ac713 tests/__init__.py
--- a/tests/__init__.py Sun Apr 10 19:11:39 2022 +0200
+++ b/tests/__init__.py Sat Apr 16 18:30:18 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.product_measurements.tests.test_product_measurements 
import \
-        suite  # noqa: E501
-except ImportError:
-    from .test_product_measurements import suite
-
-__all__ = ['suite']
diff -r 0f4a8e027932 -r 75b7821ac713 tests/test_module.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test_module.py      Sat Apr 16 18:30:18 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 ProductMeasurementsTestCase(ModuleTestCase):
+    'Test ProductMeasurements module'
+    module = 'product_measurements'
+
+
+del ModuleTestCase
diff -r 0f4a8e027932 -r 75b7821ac713 tests/test_product_measurements.py
--- a/tests/test_product_measurements.py        Sun Apr 10 19:11:39 2022 +0200
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +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
-
-import trytond.tests.test_tryton
-from trytond.tests.test_tryton import ModuleTestCase
-
-
-class ProductMeasurementsTestCase(ModuleTestCase):
-    'Test ProductMeasurements module'
-    module = 'product_measurements'
-
-
-def suite():
-    suite = trytond.tests.test_tryton.suite()
-    suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
-        ProductMeasurementsTestCase))
-    return suite
diff -r 0f4a8e027932 -r 75b7821ac713 tox.ini
--- a/tox.ini   Sun Apr 10 19:11:39 2022 +0200
+++ b/tox.ini   Sat Apr 16 18:30:18 2022 +0200
@@ -3,7 +3,7 @@
 
 [testenv]
 commands =
-    coverage run --include=.*/product_measurements/* setup.py test
+    coverage run --include=.*/product_measurements/* -m unittest discover -s 
tests
     coverage report --include=.*/product_measurements/* --omit=*/tests/*
 deps =
     coverage

Reply via email to