We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b8193c commit 7b3c459Copy full SHA for 7b3c459
pyface/tests/test_pil_image.py
@@ -19,6 +19,7 @@
19
except ImportError:
20
from importlib_resources import as_file, files
21
22
+from pyface.qt import is_qt5
23
from pyface.util._optional_dependencies import optional_import
24
25
Image = None
@@ -35,6 +36,7 @@
35
36
37
38
@unittest.skipIf(Image is None, "Pillow not available")
39
+@unittest.skipIf(is_qt5, "PIL.ImageQt does not support Qt 5")
40
class TestPILImage(unittest.TestCase):
41
42
def test_create_image(self):
0 commit comments