Adding exclusion for the azure module in iptest.

This commit is contained in:
Brian Granger 2012-08-10 17:21:57 -07:00
parent f819997f6e
commit 421ada2837

View File

@ -164,6 +164,7 @@ have['oct2py'] = test_for('oct2py')
have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
have['wx'] = test_for('wx')
have['wx.aui'] = test_for('wx.aui')
have['azure'] = test_for('azure')
if os.name == 'nt':
min_zmq = (2,1,7)
@ -303,6 +304,9 @@ def make_exclude():
exclusions.append(ipjoin('extensions', 'rmagic'))
exclusions.append(ipjoin('extensions', 'tests', 'test_rmagic'))
if not have['azure']:
exclusions.append(ipjoin('frontend', 'html', 'notebook', 'azurenbmanager'))
# This is needed for the reg-exp to match on win32 in the ipdoctest plugin.
if sys.platform == 'win32':
exclusions = [s.replace('\\','\\\\') for s in exclusions]