changeset 90502f0f3e05 in modules/product_classification:default
details: 
https://hg.tryton.org/modules/product_classification?cmd=changeset&node=90502f0f3e05
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_classification.py |  18 ------------------
 tox.ini                              |   2 +-
 5 files changed, 13 insertions(+), 29 deletions(-)

diffs (74 lines):

diff -r 83307fedfc74 -r 90502f0f3e05 setup.py
--- a/setup.py  Sun Apr 10 19:11:38 2022 +0200
+++ b/setup.py  Sat Apr 16 18:30:18 2022 +0200
@@ -140,6 +140,4 @@
     [trytond.modules]
     product_classification = trytond.modules.product_classification
     """,
-    test_suite='tests',
-    test_loader='trytond.test_loader:Loader',
     )
diff -r 83307fedfc74 -r 90502f0f3e05 tests/__init__.py
--- a/tests/__init__.py Sun Apr 10 19:11:38 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_classification.tests.test_product_classification import 
\
-        suite  # noqa: E501
-except ImportError:
-    from .test_product_classification import suite
-
-__all__ = ['suite']
diff -r 83307fedfc74 -r 90502f0f3e05 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 ProductClassificationTestCase(ModuleTestCase):
+    'Test Product Classification module'
+    module = 'product_classification'
+
+
+del ModuleTestCase
diff -r 83307fedfc74 -r 90502f0f3e05 tests/test_product_classification.py
--- a/tests/test_product_classification.py      Sun Apr 10 19:11:38 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 ProductClassificationTestCase(ModuleTestCase):
-    'Test Product Classification module'
-    module = 'product_classification'
-
-
-def suite():
-    suite = trytond.tests.test_tryton.suite()
-    suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
-        ProductClassificationTestCase))
-    return suite
diff -r 83307fedfc74 -r 90502f0f3e05 tox.ini
--- a/tox.ini   Sun Apr 10 19:11:38 2022 +0200
+++ b/tox.ini   Sat Apr 16 18:30:18 2022 +0200
@@ -3,7 +3,7 @@
 
 [testenv]
 commands =
-    coverage run --include=.*/product_classification/* setup.py test
+    coverage run --include=.*/product_classification/* -m unittest discover -s 
tests
     coverage report --include=.*/product_classification/* --omit=*/tests/*
 deps =
     coverage

Reply via email to