Commit 33cabb92 authored by Stefan Behnel's avatar Stefan Behnel

disable IPython history thread in test to prevent dangling thread problem in test suite

parent 268810da
......@@ -12,6 +12,13 @@ try:
except:
__test__ = False
try:
# disable IPython history thread to avoid having to clean it up
from IPython.core.history import HistoryManager
HistoryManager.enabled = False
except ImportError:
pass
from Cython.TestUtils import CythonTest
ip = get_ipython()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment