Merge pull request #77 from swt2c/skip_pdfviewer_test

Skip pdfviewer test on wxGTK also - it crashes there too
This commit is contained in:
Robin Dunn
2016-05-09 22:00:14 -07:00

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