Xqt has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/832614 )
Change subject: [tests] handle exceptions for autorun scripts ......................................................................
[tests] handle exceptions for autorun scripts
Change-Id: If45fe2bbbe2cf56aa1d7f4d357b6b55f61a17a10 --- M tests/script_tests.py 1 file changed, 3 insertions(+), 3 deletions(-)
Approvals: Xqt: Verified; Looks good to me, approved
diff --git a/tests/script_tests.py b/tests/script_tests.py index 7bb54db..d6c0317 100755 --- a/tests/script_tests.py +++ b/tests/script_tests.py @@ -403,17 +403,17 @@ _expected_failures = { 'catall', # stdout user interaction 'checkimages', - 'noreferences', 'patrol', 'revertbot', 'unusedfiles', # not localized for default sites - 'upload', # raises custom ValueError }
_allowed_failures = [ 'blockpageschecker', # not localized for some test sites 'disambredir', 'misspelling', # T94681 + 'noreferences', + 'upload', # raises custom ValueError 'watchlist', # not logged in ]
@@ -434,7 +434,6 @@ 'login', 'add_text', 'archivebot', - 'blockpageschecker', 'category', 'category_redirect', 'change_pagelang', @@ -473,6 +472,7 @@
_allowed_failures = [ 'basic', + 'blockpageschecker', 'commonscat', 'commons_information', 'coordinate_import',