##// 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 have_foolscap = test_for('foolscap')
55 have_foolscap = test_for('foolscap')
56 have_objc = test_for('objc')
56 have_objc = test_for('objc')
57 have_pexpect = test_for('pexpect')
57 have_pexpect = test_for('pexpect')
58 have_gtk = test_for('gtk')
59 have_gobject = test_for('gobject')
58
60
59
61
60 def make_exclude():
62 def make_exclude():
@@ -73,13 +75,18 b' def make_exclude():'
73 pjoin('IPython', 'extensions', 'numeric_formats'),
75 pjoin('IPython', 'extensions', 'numeric_formats'),
74 pjoin('IPython', 'testing', 'attic'),
76 pjoin('IPython', 'testing', 'attic'),
75 pjoin('IPython', 'testing', 'tools'),
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 if not have_wx:
82 if not have_wx:
80 EXCLUDE.append(pjoin('IPython', 'extensions', 'igrid'))
83 EXCLUDE.append(pjoin('IPython', 'extensions', 'igrid'))
81 EXCLUDE.append(pjoin('IPython', 'gui'))
84 EXCLUDE.append(pjoin('IPython', 'gui'))
82 EXCLUDE.append(pjoin('IPython', 'frontend', 'wx'))
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 if not have_objc:
91 if not have_objc:
85 EXCLUDE.append(pjoin('IPython', 'frontend', 'cocoa'))
92 EXCLUDE.append(pjoin('IPython', 'frontend', 'cocoa'))
General Comments 0
You need to be logged in to leave comments. Login now