Author: Yaroslav Halchenko
Last-Update: 2018-05-23 09:21:55 -0400
Description: Skip two tests that are known to hang

--- a/psychopy/tests/test_app/test_Wizard.py
+++ b/psychopy/tests/test_app/test_Wizard.py
@@ -28,11 +28,17 @@ class TestWizard(object):
             psychopy.tools.wizard.cardOkay = tmpcardOkay
 
     def test_firstrunWizard(self):
+        import wx
+        if int(wx.__version__.split('.')[0]) < 3:
+            pytest.skip("Known to hang: https://github.com/psychopy/psychopy/issues/724")
         con = ConfigWizard(firstrun=False, interactive=False, log=False)
         result = open(con.reportPath, 'rU').read()
         assert 'This page was auto-generated by the PsychoPy configuration wizard' in result
 
     def test_benchmarkWizard(self):
+        import wx
+        if int(wx.__version__.split('.')[0]) < 3:
+            pytest.skip("Known to hang: https://github.com/psychopy/psychopy/issues/724")
         ben = BenchmarkWizard(fullscr=False, interactive=False, log=False)
         result = open(ben.reportPath, 'rU').read()
         assert 'This page was auto-generated by the PsychoPy configuration wizard' in result
