mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-13 13:17:50 +08:00
Adding exclusion for the azure module in iptest.
This commit is contained in:
parent
f819997f6e
commit
421ada2837
@ -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]
|
||||
|
Loading…
x
Reference in New Issue
Block a user