diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-23 15:21:33 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-23 15:21:33 +0200 |
commit | c17565e4a90a6b4c9e31edf5030030a365600db6 (patch) | |
tree | f7d56248392917a125f4d7b614ee6c0112ca048f /Lib/tkinter/test/test_tkinter/test_widgets.py | |
parent | f92ef9be46ad7a1ca7fc177074892e6486e8b35f (diff) | |
download | cpython-c17565e4a90a6b4c9e31edf5030030a365600db6.tar.gz cpython-c17565e4a90a6b4c9e31edf5030030a365600db6.zip |
Issue #19733: Temporary disable test_image on MacOSX.
Diffstat (limited to 'Lib/tkinter/test/test_tkinter/test_widgets.py')
-rw-r--r-- | Lib/tkinter/test/test_tkinter/test_widgets.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/tkinter/test/test_tkinter/test_widgets.py b/Lib/tkinter/test/test_tkinter/test_widgets.py index d7321266af1..2c4cb0540a8 100644 --- a/Lib/tkinter/test/test_tkinter/test_widgets.py +++ b/Lib/tkinter/test/test_tkinter/test_widgets.py @@ -1,6 +1,7 @@ import unittest import tkinter import os +import sys from test.support import requires from tkinter.test.support import (tcl_version, requires_tcl, @@ -262,6 +263,8 @@ class MenubuttonTest(AbstractLabelTest, unittest.TestCase): test_highlightthickness = StandardOptionsTests.test_highlightthickness + @unittest.skipIf(sys.platform == 'darwin', + 'crashes with Cocoa Tk (issue19733)') def test_image(self): widget = self.create() image = tkinter.PhotoImage('image1') |