From 0c8139f6180b3511094ade327efb286bff61fffd Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Mon, 9 May 2016 23:06:17 -0400 Subject: [PATCH] Skip pdfviewer test on wxGTK also - it crashes there too --- unittests/test_lib_pdfviewer_pdfviewer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unittests/test_lib_pdfviewer_pdfviewer.py b/unittests/test_lib_pdfviewer_pdfviewer.py index acda086f..bb2ec296 100644 --- a/unittests/test_lib_pdfviewer_pdfviewer.py +++ b/unittests/test_lib_pdfviewer_pdfviewer.py @@ -15,7 +15,8 @@ samplePdf = os.path.join(dataDir, "sample.pdf") #--------------------------------------------------------------------------- -@unittest.skipIf('wxMac' in wx.PlatformInfo, 'test is crashing on Mac...') +@unittest.skipIf('wxMac' in wx.PlatformInfo or 'wxGTK' in wx.PlatformInfo, + 'test is crashing on Mac and GTK...') class lib_pdfviewer_pdfviewer_Tests(wtc.WidgetTestCase): @unittest.skipIf(not havePyPDF, "pyPdf required")