mirror of https://github.com/python/cpython
gh-104461: Run tkinter test_configure_screen on X11 only (GH-104462)
This commit is contained in:
parent
456d56698d
commit
fdafdc235e
|
@ -76,6 +76,8 @@ class ToplevelTest(AbstractToplevelTest, unittest.TestCase):
|
||||||
|
|
||||||
def test_configure_screen(self):
|
def test_configure_screen(self):
|
||||||
widget = self.create()
|
widget = self.create()
|
||||||
|
if widget._windowingsystem != 'x11':
|
||||||
|
self.skipTest('Not using Tk for X11')
|
||||||
self.assertEqual(widget['screen'], '')
|
self.assertEqual(widget['screen'], '')
|
||||||
try:
|
try:
|
||||||
display = os.environ['DISPLAY']
|
display = os.environ['DISPLAY']
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
Run test_configure_screen on X11 only, since the ``DISPLAY``
|
||||||
|
environment variable and ``-screen`` option for toplevels
|
||||||
|
are not useful on Tk for Win32 or Aqua.
|
Loading…
Reference in New Issue