##// END OF EJS Templates
Updated iptest to skip inputhook*.py files for doctesting.
Brian Granger -
Show More
@@ -55,6 +55,8 b" have_twisted = test_for('twisted')"
55 55 have_foolscap = test_for('foolscap')
56 56 have_objc = test_for('objc')
57 57 have_pexpect = test_for('pexpect')
58 have_gtk = test_for('gtk')
59 have_gobject = test_for('gobject')
58 60
59 61
60 62 def make_exclude():
@@ -73,13 +75,18 b' def make_exclude():'
73 75 pjoin('IPython', 'extensions', 'numeric_formats'),
74 76 pjoin('IPython', 'testing', 'attic'),
75 77 pjoin('IPython', 'testing', 'tools'),
76 pjoin('IPython', 'testing', 'mkdoctests')
78 pjoin('IPython', 'testing', 'mkdoctests'),
79 pjoin('IPython', 'lib', 'inputhook')
77 80 ]
78 81
79 82 if not have_wx:
80 83 EXCLUDE.append(pjoin('IPython', 'extensions', 'igrid'))
81 84 EXCLUDE.append(pjoin('IPython', 'gui'))
82 85 EXCLUDE.append(pjoin('IPython', 'frontend', 'wx'))
86 EXCLUDE.append(pjoin('IPython', 'lib', 'inputhookwx'))
87
88 if not have_gtk or not have_gobject:
89 EXCLUDE.append(pjoin('IPython', 'lib', 'inputhookgtk'))
83 90
84 91 if not have_objc:
85 92 EXCLUDE.append(pjoin('IPython', 'frontend', 'cocoa'))
General Comments 0
You need to be logged in to leave comments. Login now