changeset 326965a22239 in modules/edocument_unece:default
details:
https://hg.tryton.org/modules/edocument_unece?cmd=changeset&node=326965a22239
description:
Replace test setuptools command by unittest discover
issue9215
review389851002
diffstat:
setup.py | 6 +++---
tests/__init__.py | 8 --------
tests/test_edocument_unece.py | 19 -------------------
tests/test_module.py | 12 ++++++++++++
tox.ini | 3 ++-
5 files changed, 17 insertions(+), 31 deletions(-)
diffs (87 lines):
diff -r 3af2f34dc898 -r 326965a22239 setup.py
--- a/setup.py Sun Apr 10 19:11:38 2022 +0200
+++ b/setup.py Sat Apr 16 18:30:17 2022 +0200
@@ -137,13 +137,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]
edocument_unece = trytond.modules.edocument_unece
""",
- test_suite='tests',
- test_loader='trytond.test_loader:Loader',
- tests_require=tests_require,
)
diff -r 3af2f34dc898 -r 326965a22239 tests/__init__.py
--- a/tests/__init__.py Sun Apr 10 19:11:38 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.edocument_unece.tests.test_edocument_unece import \
- suite # noqa: E501
-except ImportError:
- from .test_edocument_unece import suite
-
-__all__ = ['suite']
diff -r 3af2f34dc898 -r 326965a22239 tests/test_edocument_unece.py
--- a/tests/test_edocument_unece.py Sun Apr 10 19:11:38 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 EDocumentUNECETestCase(ModuleTestCase):
- 'Test EDocument UNECE module'
- module = 'edocument_unece'
-
-
-def suite():
- suite = test_suite()
- suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
- EDocumentUNECETestCase))
- return suite
diff -r 3af2f34dc898 -r 326965a22239 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,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 EDocumentUNECETestCase(ModuleTestCase):
+ 'Test EDocument UNECE module'
+ module = 'edocument_unece'
+
+
+del ModuleTestCase
diff -r 3af2f34dc898 -r 326965a22239 tox.ini
--- a/tox.ini Sun Apr 10 19:11:38 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=.*/edocument_unece/* setup.py test
+ coverage run --include=.*/edocument_unece/* -m unittest discover -s tests
coverage report --include=.*/edocument_unece/* --omit=*/tests/*
deps =
coverage