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."""
pywikibot-commits@lists.wikimedia.org