jenkins-bot has submitted this change and it was merged.
Change subject: [FIX] Archivebot: Don't test uz wp ......................................................................
[FIX] Archivebot: Don't test uz wp
Recently the archivebot test on uz wp fails because the Timestripper doesn't recognize a dash between the day and month name. As long as the Timestripper doesn't support this format, expect failures.
Change-Id: I3cbf5b4f399bd150a912485269d77bd6d244f440 --- M tests/archivebot_tests.py 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/tests/archivebot_tests.py b/tests/archivebot_tests.py index 5c57d54..9803cf1 100644 --- a/tests/archivebot_tests.py +++ b/tests/archivebot_tests.py @@ -70,7 +70,7 @@ self.assertIsInstance(thread.content, basestring) self.assertIsInstance(thread.timestamp, datetime)
- expected_failures = ['ar', 'pdc', 'th'] + expected_failures = ['ar', 'pdc', 'th', 'uz'] # expected failures - should be fixed # 'ar': Uses Arabic acronym for TZ # 'pdc': changed month name setting in wiki over time (?) @@ -78,6 +78,7 @@ # <message name="feb" xml:space="preserve">Han.</message>. # for new entries it should work # 'th': year is 2552 while regex assumes 19..|20.., might be fixed + # 'uz': a dash between day and month (24-Oktabr)
if __name__ == '__main__':
pywikibot-commits@lists.wikimedia.org