Skip pdfviewer test on wxGTK also - it crashes there too

This commit is contained in:
Scott Talbert
2016-05-09 23:06:17 -04:00
parent f780b21688
commit 0c8139f618

View File

@@ -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")