mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
Allow IPython to run without sqlite3
The History will always appear empty, so history magics, etc. don't do anything. Readline history for a single session works fine. Test suite should now pass without sqlite
This commit is contained in:
parent
89f11475da
commit
dd8761ea1d
@ -128,6 +128,7 @@ have['pymongo'] = test_for('pymongo')
|
|||||||
have['wx'] = test_for('wx')
|
have['wx'] = test_for('wx')
|
||||||
have['wx.aui'] = test_for('wx.aui')
|
have['wx.aui'] = test_for('wx.aui')
|
||||||
have['qt'] = test_for('IPython.external.qt')
|
have['qt'] = test_for('IPython.external.qt')
|
||||||
|
have['sqlite3'] = test_for('sqlite3')
|
||||||
|
|
||||||
have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
|
have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
|
||||||
|
|
||||||
@ -204,7 +205,9 @@ def make_exclude():
|
|||||||
ipjoin('config', 'default'),
|
ipjoin('config', 'default'),
|
||||||
ipjoin('config', 'profile'),
|
ipjoin('config', 'profile'),
|
||||||
]
|
]
|
||||||
|
if not have['sqlite3']:
|
||||||
|
exclusions.append(ipjoin('core', 'tests', 'test_history'))
|
||||||
|
exclusions.append(ipjoin('core', 'history'))
|
||||||
if not have['wx']:
|
if not have['wx']:
|
||||||
exclusions.append(ipjoin('lib', 'inputhookwx'))
|
exclusions.append(ipjoin('lib', 'inputhookwx'))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user