jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1057899?usp=email )
Change subject: [tests] simplify tests collector ......................................................................
[tests] simplify tests collector
Change-Id: I422ced7caf868b9239ead8c1bc1d4d56259144e7 --- M tests/__init__.py 1 file changed, 6 insertions(+), 8 deletions(-)
Approvals: Xqt: Verified; Looks good to me, approved jenkins-bot: Verified
diff --git a/tests/__init__.py b/tests/__init__.py index cf3b51c..43aed9d 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -183,11 +183,11 @@ extra_test_modules = _unknown_test_modules()
if 'PYWIKIBOT_TEST_MODULES' in os.environ: - _enabled_test_modules = os.environ['PYWIKIBOT_TEST_MODULES'].split(',') - disabled_test_modules = (library_test_modules - | extra_test_modules - | script_test_modules - - set(_enabled_test_modules)) + enabled_test_modules = os.environ['PYWIKIBOT_TEST_MODULES'].split(',') +else: + enabled_test_modules = chain(library_test_modules, + extra_test_modules, + script_test_modules)
def unittest_print(*args, **kwargs): @@ -218,9 +218,7 @@ f' {disabled_tests!r}')
modules = (module - for module in chain(library_test_modules, - extra_test_modules, - script_test_modules) + for module in enabled_test_modules if module not in disabled_test_modules)
test_list = []
pywikibot-commits@lists.wikimedia.org