jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1079659?usp=email )
Change subject: [tests] run TestTkinter on en-wiki only ...................................................................... [tests] run TestTkinter on en-wiki only Otherwise it could fail because of different content. Change-Id: I2b4a0e191a04e4421b4c48043800ec6db9addb0b --- M tests/gui_tests.py 1 file changed, 4 insertions(+), 3 deletions(-) Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved diff --git a/tests/gui_tests.py b/tests/gui_tests.py index f6c51a4..3d15388 100755 --- a/tests/gui_tests.py +++ b/tests/gui_tests.py @@ -13,7 +13,7 @@ from contextlib import suppress import pywikibot -from tests.aspects import DefaultSiteTestCase, TestCase, require_modules +from tests.aspects import TestCase, require_modules class TestTkdialog(TestCase): @@ -36,11 +36,12 @@ self.assertTrue(skip) -class TestTkinter(DefaultSiteTestCase): +class TestTkinter(TestCase): """Test Tkinter.""" - net = True + family = 'wikipedia' + code = 'en' def test_tkinter(self): """Test Tkinter window.""" -- To view, visit https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1079659?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.wikimedia.org/r/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Change-Id: I2b4a0e191a04e4421b4c48043800ec6db9addb0b Gerrit-Change-Number: 1079659 Gerrit-PatchSet: 1 Gerrit-Owner: Xqt <i...@gno.de> Gerrit-Reviewer: Xqt <i...@gno.de> Gerrit-Reviewer: jenkins-bot
_______________________________________________ Pywikibot-commits mailing list -- pywikibot-commits@lists.wikimedia.org To unsubscribe send an email to pywikibot-commits-le...@lists.wikimedia.org