summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-12-03 08:48:26 (GMT)
committerGitHub <noreply@github.com>2020-12-03 08:48:26 (GMT)
commitf3c3ea91a76526edff928c95b9c6767e077b7448 (patch)
tree09190a0f65af6648dd216b52b4b0b682d27ce30b /Lib/tkinter
parent3ec9d019013a9e9125d4f8669be177b9154cb45b (diff)
downloadcpython-f3c3ea91a76526edff928c95b9c6767e077b7448.zip
cpython-f3c3ea91a76526edff928c95b9c6767e077b7448.tar.gz
cpython-f3c3ea91a76526edff928c95b9c6767e077b7448.tar.bz2
bpo-42328: Skip some tests with themes vista and xpnative on Windows 7 (GH-23612)
Diffstat (limited to 'Lib/tkinter')
-rw-r--r--Lib/tkinter/test/test_ttk/test_style.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_style.py b/Lib/tkinter/test/test_ttk/test_style.py
index 54e9133..38d70d7 100644
--- a/Lib/tkinter/test/test_ttk/test_style.py
+++ b/Lib/tkinter/test/test_ttk/test_style.py
@@ -1,4 +1,5 @@
import unittest
+import sys
import tkinter
from tkinter import ttk
from test import support
@@ -136,6 +137,10 @@ class StyleTest(AbstractTkTest, unittest.TestCase):
with self.subTest(theme=theme, name=name):
if support.verbose >= 2:
print('configure', theme, name, default)
+ if (theme in ('vista', 'xpnative')
+ and sys.getwindowsversion()[:2] == (6, 1)):
+ # Fails on the Windows 7 buildbot
+ continue
newname = f'C.{name}'
self.assertEqual(style.configure(newname), None)
style.configure(newname, **default)
@@ -158,6 +163,10 @@ class StyleTest(AbstractTkTest, unittest.TestCase):
with self.subTest(theme=theme, name=name):
if support.verbose >= 2:
print('map', theme, name, default)
+ if (theme in ('vista', 'xpnative')
+ and sys.getwindowsversion()[:2] == (6, 1)):
+ # Fails on the Windows 7 buildbot
+ continue
newname = f'C.{name}'
self.assertEqual(style.map(newname), {})
style.map(newname, **default)