changeset e73f43aa1dcf in modules/account_fr_chorus:default
details:
https://hg.tryton.org/modules/account_fr_chorus?cmd=changeset&node=e73f43aa1dcf
description:
Replace test setuptools command by unittest discover
issue9215
review389851002
diffstat:
setup.py | 6 +++---
tests/__init__.py | 8 --------
tests/test_account_fr_chorus.py | 21 ---------------------
tests/test_module.py | 14 ++++++++++++++
tox.ini | 3 ++-
5 files changed, 19 insertions(+), 33 deletions(-)
diffs (91 lines):
diff -r c2d7c1deefff -r e73f43aa1dcf setup.py
--- a/setup.py Sun Apr 10 19:11:37 2022 +0200
+++ b/setup.py Sat Apr 16 18:30:16 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]
account_fr_chorus = trytond.modules.account_fr_chorus
""",
- test_suite='tests',
- test_loader='trytond.test_loader:Loader',
- tests_require=tests_require,
)
diff -r c2d7c1deefff -r e73f43aa1dcf 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_fr_chorus.tests.test_account_fr_chorus import
\
- suite # noqa: E501
-except ImportError:
- from .test_account_fr_chorus import suite
-
-__all__ = ['suite']
diff -r c2d7c1deefff -r e73f43aa1dcf tests/test_account_fr_chorus.py
--- a/tests/test_account_fr_chorus.py Sun Apr 10 19:11:37 2022 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +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.modules.company.tests import CompanyTestMixin
-from trytond.tests.test_tryton import ModuleTestCase
-from trytond.tests.test_tryton import suite as test_suite
-
-
-class AccountFrChorusTestCase(CompanyTestMixin, ModuleTestCase):
- 'Test Account Fr Chorus module'
- module = 'account_fr_chorus'
- extras = ['edocument_uncefact']
-
-
-def suite():
- suite = test_suite()
- suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
- AccountFrChorusTestCase))
- return suite
diff -r c2d7c1deefff -r e73f43aa1dcf 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,14 @@
+# 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.modules.company.tests import CompanyTestMixin
+from trytond.tests.test_tryton import ModuleTestCase
+
+
+class AccountFrChorusTestCase(CompanyTestMixin, ModuleTestCase):
+ 'Test Account Fr Chorus module'
+ module = 'account_fr_chorus'
+ extras = ['edocument_uncefact']
+
+
+del ModuleTestCase
diff -r c2d7c1deefff -r e73f43aa1dcf 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_fr_chorus/* setup.py test
+ coverage run --include=.*/account_fr_chorus/* -m unittest discover -s tests
coverage report --include=.*/account_fr_chorus/* --omit=*/tests/*
deps =
coverage