changeset 5287af761859 in modules/purchase_requisition:default
details:
https://hg.tryton.org/modules/purchase_requisition?cmd=changeset&node=5287af761859
description:
Replace test setuptools command by unittest discover
issue9215
review389851002
diffstat:
setup.py | 6 +++---
tests/__init__.py | 9 ++-------
tests/test_module.py | 13 +++++++++++++
tests/test_purchase_requisition.py | 26 --------------------------
tests/test_scenario.py | 22 ++++++++++++++++++++++
tox.ini | 3 ++-
6 files changed, 42 insertions(+), 37 deletions(-)
diffs (120 lines):
diff -r ecd6c1630c21 -r 5287af761859 setup.py
--- a/setup.py Sun Apr 10 19:11:39 2022 +0200
+++ b/setup.py Sat Apr 16 18:30:18 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]
purchase_requisition = trytond.modules.purchase_requisition
""",
- test_suite='tests',
- test_loader='trytond.test_loader:Loader',
- tests_require=tests_require,
)
diff -r ecd6c1630c21 -r 5287af761859 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,7 +1,2 @@
-try:
- from trytond.modules.purchase_requisition.tests.test_purchase_requisition
import (
- suite)
-except ImportError:
- from .test_purchase_requisition import suite
-
-__all__ = ['suite']
+# This file is part of Tryton. The COPYRIGHT file at the top level of
+# this repository contains the full copyright notices and license terms.
diff -r ecd6c1630c21 -r 5287af761859 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,13 @@
+# 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 PurchaseRequisitionTestCase(CompanyTestMixin, ModuleTestCase):
+ 'Test Purchase Requisition module'
+ module = 'purchase_requisition'
+
+
+del ModuleTestCase
diff -r ecd6c1630c21 -r 5287af761859 tests/test_purchase_requisition.py
--- a/tests/test_purchase_requisition.py Sun Apr 10 19:11:39 2022 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +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
-
-from trytond.modules.company.tests import CompanyTestMixin
-from trytond.tests.test_tryton import (
- ModuleTestCase, doctest_checker, doctest_teardown)
-from trytond.tests.test_tryton import suite as test_suite
-
-
-class PurchaseRequisitionTestCase(CompanyTestMixin, ModuleTestCase):
- 'Test Purchase Requisition module'
- module = 'purchase_requisition'
-
-
-def suite():
- suite = test_suite()
- suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
- PurchaseRequisitionTestCase))
- suite.addTests(doctest.DocFileSuite(
- 'scenario_purchase_requisition.rst',
- tearDown=doctest_teardown, encoding='utf-8',
- checker=doctest_checker,
- optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
- return suite
diff -r ecd6c1630c21 -r 5287af761859 tests/test_scenario.py
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test_scenario.py Sat Apr 16 18:30:18 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 ecd6c1630c21 -r 5287af761859 tox.ini
--- a/tox.ini Sun Apr 10 19:11:39 2022 +0200
+++ b/tox.ini Sat Apr 16 18:30:18 2022 +0200
@@ -2,8 +2,9 @@
envlist = {py37,py38,py39,py310}-{sqlite,postgresql}
[testenv]
+extras = test
commands =
- coverage run --include=.*/purchase_requisition/* setup.py test
+ coverage run --include=.*/purchase_requisition/* -m unittest discover -s
tests
coverage report --include=.*/purchase_requisition/* --omit=*/tests/*
deps =
coverage