changeset a159fb9ac4f1 in modules/account_fr:default
details:
https://hg.tryton.org/modules/account_fr?cmd=changeset&node=a159fb9ac4f1
description:
Replace test setuptools command by unittest discover
issue9215
review389851002
diffstat:
setup.py | 6 +++---
tests/__init__.py | 7 -------
tests/test_account_fr.py | 33 ---------------------------------
tests/test_module.py | 20 ++++++++++++++++++++
tests/test_scenario.py | 22 ++++++++++++++++++++++
tox.ini | 3 ++-
6 files changed, 47 insertions(+), 44 deletions(-)
diffs (134 lines):
diff -r c3ada641778f -r a159fb9ac4f1 setup.py
--- a/setup.py Sun Apr 10 19:11:37 2022 +0200
+++ b/setup.py Sat Apr 16 18:30:16 2022 +0200
@@ -138,13 +138,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 = trytond.modules.account_fr
""",
- test_suite='tests',
- test_loader='trytond.test_loader:Loader',
- tests_require=tests_require,
)
diff -r c3ada641778f -r a159fb9ac4f1 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,9 +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.tests.test_account_fr import suite
-except ImportError:
- from .test_account_fr import suite
-
-__all__ = ['suite']
diff -r c3ada641778f -r a159fb9ac4f1 tests/test_account_fr.py
--- a/tests/test_account_fr.py Sun Apr 10 19:11:37 2022 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +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 unittest
-
-import trytond.tests.test_tryton
-from trytond.modules.account.tests import create_chart
-from trytond.modules.company.tests import create_company, set_company
-from trytond.tests.test_tryton import (
- ModuleTestCase, doctest_checker, doctest_teardown, with_transaction)
-
-
-class AccountFRTestCase(ModuleTestCase):
- 'Test Account FR module'
- module = 'account_fr'
-
- @with_transaction()
- def test_create_chart(self):
- company = create_company()
- with set_company(company):
- create_chart(company, chart=self.module + '.root')
-
-
-def suite():
- suite = trytond.tests.test_tryton.suite()
- suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
- AccountFRTestCase))
- suite.addTests(doctest.DocFileSuite(
- 'scenario_fec.rst',
- tearDown=doctest_teardown, encoding='utf-8',
- checker=doctest_checker,
- optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
- return suite
diff -r c3ada641778f -r a159fb9ac4f1 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,20 @@
+# 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.account.tests import create_chart
+from trytond.modules.company.tests import create_company, set_company
+from trytond.tests.test_tryton import ModuleTestCase, with_transaction
+
+
+class AccountFRTestCase(ModuleTestCase):
+ 'Test Account FR module'
+ module = 'account_fr'
+
+ @with_transaction()
+ def test_create_chart(self):
+ company = create_company()
+ with set_company(company):
+ create_chart(company, chart=self.module + '.root')
+
+
+del ModuleTestCase
diff -r c3ada641778f -r a159fb9ac4f1 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,22 @@
+# 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
+
+from trytond.tests.test_tryton import doctest_checker, doctest_teardown
+
+
+def load_tests(loader, tests, pattern):
+ 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 c3ada641778f -r a159fb9ac4f1 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/* setup.py test
+ coverage run --include=.*/account_fr/* -m unittest discover -s tests
coverage report --include=.*/account_fr/* --omit=*/tests/*
deps =
coverage