Skip to content

Instantly share code, notes, and snippets.

@bfroehle
Created July 21, 2012 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bfroehle/3153959 to your computer and use it in GitHub Desktop.
Save bfroehle/3153959 to your computer and use it in GitHub Desktop.
IPython #2179 Failure
..............................................
----------------------------------------------------------------------
Ran 46 tests in 0.066s
OK
..................................................................................................................................................................................................................S....................................................................................................................................K.........
----------------------------------------------------------------------
Ran 353 tests in 23.375s
OK (KNOWNFAIL=1, SKIP=1)
......
----------------------------------------------------------------------
Ran 6 tests in 0.684s
OK
..............................
----------------------------------------------------------------------
Ran 30 tests in 2.999s
OK
................FF.......
======================================================================
FAIL: Verify that plot is not available when pylab_import_all = False
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/testing/decorators.py", line 229, in skipper_func
return f(*args, **kwargs)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/testing/decorators.py", line 229, in skipper_func
return f(*args, **kwargs)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/lib/tests/test_irunner_pylab_magic.py", line 119, in test_pylab_import_all_disabled
self._test_runner(runner,source,output)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/lib/tests/test_irunner_pylab_magic.py", line 54, in _test_runner
self.fail(message)
AssertionError: Mismatch in number of lines
Expected:
~~~~~~~~~
In \[1\]: from IPython\.config\.application import Application
In \[2\]: app = Application\.instance\(\)
In \[3\]: app\.pylab_import_all = False
In \[4\]: pylab
^Welcome to pylab, a matplotlib-based Python environment
For more information, type 'help\(pylab\)'\.
In \[5\]: ip=get_ipython\(\)
In \[6\]: 'plot' in ip\.user_ns
Out\[6\]: False
Got:
~~~~~~~~~
In [1]: from IPython.config.application import Application
In [2]: app = Application.instance()
In [3]: app.pylab_import_all = False
In [4]: pylab
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-4-a5df18eabd26> in <module>()
----> 1 get_ipython().magic('pylab ')
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in magic(self, arg_s)
2156 magic_name, _, magic_arg_s = arg_s.partition(' ')
2157 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
-> 2158 return self.run_line_magic(magic_name, magic_arg_s)
2159
2160 #-------------------------------------------------------------------------
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in run_line_magic(self, magic_name, line)
2082 args.append(sys._getframe(stack_depth).f_locals)
2083 with self.builtin_trap:
-> 2084 result = fn(*args)
2085 return result
2086
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magics/pylab.py in pylab(self, parameter_s)
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magic.py in <lambda>(f, *a, **k)
190 # but it's overkill for just that one bit of state.
191 def magic_deco(arg):
--> 192 call = lambda f, *a, **k: f(*a, **k)
193
194 if isinstance(arg, collections.Callable):
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magics/pylab.py in pylab(self, parameter_s)
86 import_all_status = True
87
---> 88 self.shell.enable_pylab(parameter_s, import_all=import_all_status)
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in enable_pylab(self, gui, import_all)
2794 ns = {}
2795 try:
-> 2796 gui = pylab_activate(ns, gui, import_all, self)
2797 except KeyError:
2798 error("Backend %r not supported" % gui)
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/pylabtools.py in pylab_activate(user_ns, gui, import_all, shell)
332 """
333 gui, backend = find_gui_and_backend(gui)
--> 334 activate_matplotlib(backend)
335 import_pylab(user_ns, import_all)
336 if shell is not None:
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/pylabtools.py in activate_matplotlib(backend)
214
215 import matplotlib.pyplot
--> 216 matplotlib.pyplot.switch_backend(backend)
217
218 # This must be imported last in the matplotlib series, after
/home/bfroehle/.local/lib/python3.2/site-packages/matplotlib/pyplot.py in switch_backend(newbackend)
117 global new_figure_manager, draw_if_interactive, _show
118 matplotlib.use(newbackend, warn=False)
--> 119 reload(matplotlib.backends)
120 from matplotlib.backends import pylab_setup
121 new_figure_manager, draw_if_interactive, _show = pylab_setup()
NameError: global name 'reload' is not defined
In [5]: ip=get_ipython()
In [6]: 'plot' in ip.user_ns
Out[6]: False
"""Fail immediately, with the given message."""
>> raise self.failureException('Mismatch in number of lines\n\nExpected:\n~~~~~~~~~\nIn \\[1\\]: from IPython\\.config\\.application import Application\nIn \\[2\\]: app = Application\\.instance\\(\\)\nIn \\[3\\]: app\\.pylab_import_all = False\nIn \\[4\\]: pylab\n^Welcome to pylab, a matplotlib-based Python environment\nFor more information, type \'help\\(pylab\\)\'\\.\nIn \\[5\\]: ip=get_ipython\\(\\)\nIn \\[6\\]: \'plot\' in ip\\.user_ns\nOut\\[6\\]: False\n\nGot:\n~~~~~~~~~\nIn [1]: from IPython.config.application import Application\nIn [2]: app = Application.instance()\nIn [3]: app.pylab_import_all = False\nIn [4]: pylab\n---------------------------------------------------------------------------\nNameError Traceback (most recent call last)\n<ipython-input-4-a5df18eabd26> in <module>()\n----> 1 get_ipython().magic(\'pylab \')\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in magic(self, arg_s)\n 2156 magic_name, _, magic_arg_s = arg_s.partition(\' \')\n 2157 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)\n-> 2158 return self.run_line_magic(magic_name, magic_arg_s)\n 2159 \n 2160 #-------------------------------------------------------------------------\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in run_line_magic(self, magic_name, line)\n 2082 args.append(sys._getframe(stack_depth).f_locals)\n 2083 with self.builtin_trap:\n-> 2084 result = fn(*args)\n 2085 return result\n 2086 \n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magics/pylab.py in pylab(self, parameter_s)\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magic.py in <lambda>(f, *a, **k)\n 190 # but it\'s overkill for just that one bit of state.\n 191 def magic_deco(arg):\n--> 192 call = lambda f, *a, **k: f(*a, **k)\n 193 \n 194 if isinstance(arg, collections.Callable):\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magics/pylab.py in pylab(self, parameter_s)\n 86 import_all_status = True\n 87 \n---> 88 self.shell.enable_pylab(parameter_s, import_all=import_all_status)\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in enable_pylab(self, gui, import_all)\n 2794 ns = {}\n 2795 try:\n-> 2796 gui = pylab_activate(ns, gui, import_all, self)\n 2797 except KeyError:\n 2798 error("Backend %r not supported" % gui)\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/pylabtools.py in pylab_activate(user_ns, gui, import_all, shell)\n 332 """\n 333 gui, backend = find_gui_and_backend(gui)\n--> 334 activate_matplotlib(backend)\n 335 import_pylab(user_ns, import_all)\n 336 if shell is not None:\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/pylabtools.py in activate_matplotlib(backend)\n 214 \n 215 import matplotlib.pyplot\n--> 216 matplotlib.pyplot.switch_backend(backend)\n 217 \n 218 # This must be imported last in the matplotlib series, after\n/home/bfroehle/.local/lib/python3.2/site-packages/matplotlib/pyplot.py in switch_backend(newbackend)\n 117 global new_figure_manager, draw_if_interactive, _show\n 118 matplotlib.use(newbackend, warn=False)\n--> 119 reload(matplotlib.backends)\n 120 from matplotlib.backends import pylab_setup\n 121 new_figure_manager, draw_if_interactive, _show = pylab_setup()\nNameError: global name \'reload\' is not defined\nIn [5]: ip=get_ipython()\nIn [6]: \'plot\' in ip.user_ns\nOut[6]: False')
======================================================================
FAIL: Verify that plot is available when pylab_import_all = True
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/testing/decorators.py", line 229, in skipper_func
return f(*args, **kwargs)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/testing/decorators.py", line 229, in skipper_func
return f(*args, **kwargs)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/lib/tests/test_irunner_pylab_magic.py", line 93, in test_pylab_import_all_enabled
self._test_runner(runner,source,output)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/lib/tests/test_irunner_pylab_magic.py", line 54, in _test_runner
self.fail(message)
AssertionError: Mismatch in number of lines
Expected:
~~~~~~~~~
In \[1\]: from IPython\.config\.application import Application
In \[2\]: app = Application\.instance\(\)
In \[3\]: app\.pylab_import_all = True
In \[4\]: pylab
^Welcome to pylab, a matplotlib-based Python environment
For more information, type 'help\(pylab\)'\.
In \[5\]: ip=get_ipython\(\)
In \[6\]: 'plot' in ip\.user_ns
Out\[6\]: True
Got:
~~~~~~~~~
In [1]: from IPython.config.application import Application
In [2]: app = Application.instance()
In [3]: app.pylab_import_all = True
In [4]: pylab
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-4-a5df18eabd26> in <module>()
----> 1 get_ipython().magic('pylab ')
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in magic(self, arg_s)
2156 magic_name, _, magic_arg_s = arg_s.partition(' ')
2157 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)
-> 2158 return self.run_line_magic(magic_name, magic_arg_s)
2159
2160 #-------------------------------------------------------------------------
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in run_line_magic(self, magic_name, line)
2082 args.append(sys._getframe(stack_depth).f_locals)
2083 with self.builtin_trap:
-> 2084 result = fn(*args)
2085 return result
2086
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magics/pylab.py in pylab(self, parameter_s)
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magic.py in <lambda>(f, *a, **k)
190 # but it's overkill for just that one bit of state.
191 def magic_deco(arg):
--> 192 call = lambda f, *a, **k: f(*a, **k)
193
194 if isinstance(arg, collections.Callable):
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magics/pylab.py in pylab(self, parameter_s)
86 import_all_status = True
87
---> 88 self.shell.enable_pylab(parameter_s, import_all=import_all_status)
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in enable_pylab(self, gui, import_all)
2794 ns = {}
2795 try:
-> 2796 gui = pylab_activate(ns, gui, import_all, self)
2797 except KeyError:
2798 error("Backend %r not supported" % gui)
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/pylabtools.py in pylab_activate(user_ns, gui, import_all, shell)
332 """
333 gui, backend = find_gui_and_backend(gui)
--> 334 activate_matplotlib(backend)
335 import_pylab(user_ns, import_all)
336 if shell is not None:
/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/pylabtools.py in activate_matplotlib(backend)
214
215 import matplotlib.pyplot
--> 216 matplotlib.pyplot.switch_backend(backend)
217
218 # This must be imported last in the matplotlib series, after
/home/bfroehle/.local/lib/python3.2/site-packages/matplotlib/pyplot.py in switch_backend(newbackend)
117 global new_figure_manager, draw_if_interactive, _show
118 matplotlib.use(newbackend, warn=False)
--> 119 reload(matplotlib.backends)
120 from matplotlib.backends import pylab_setup
121 new_figure_manager, draw_if_interactive, _show = pylab_setup()
NameError: global name 'reload' is not defined
In [5]: ip=get_ipython()
In [6]: 'plot' in ip.user_ns
Out[6]: False
"""Fail immediately, with the given message."""
>> raise self.failureException('Mismatch in number of lines\n\nExpected:\n~~~~~~~~~\nIn \\[1\\]: from IPython\\.config\\.application import Application\nIn \\[2\\]: app = Application\\.instance\\(\\)\nIn \\[3\\]: app\\.pylab_import_all = True\nIn \\[4\\]: pylab\n^Welcome to pylab, a matplotlib-based Python environment\nFor more information, type \'help\\(pylab\\)\'\\.\nIn \\[5\\]: ip=get_ipython\\(\\)\nIn \\[6\\]: \'plot\' in ip\\.user_ns\nOut\\[6\\]: True\n\nGot:\n~~~~~~~~~\nIn [1]: from IPython.config.application import Application\nIn [2]: app = Application.instance()\nIn [3]: app.pylab_import_all = True\nIn [4]: pylab\n---------------------------------------------------------------------------\nNameError Traceback (most recent call last)\n<ipython-input-4-a5df18eabd26> in <module>()\n----> 1 get_ipython().magic(\'pylab \')\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in magic(self, arg_s)\n 2156 magic_name, _, magic_arg_s = arg_s.partition(\' \')\n 2157 magic_name = magic_name.lstrip(prefilter.ESC_MAGIC)\n-> 2158 return self.run_line_magic(magic_name, magic_arg_s)\n 2159 \n 2160 #-------------------------------------------------------------------------\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in run_line_magic(self, magic_name, line)\n 2082 args.append(sys._getframe(stack_depth).f_locals)\n 2083 with self.builtin_trap:\n-> 2084 result = fn(*args)\n 2085 return result\n 2086 \n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magics/pylab.py in pylab(self, parameter_s)\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magic.py in <lambda>(f, *a, **k)\n 190 # but it\'s overkill for just that one bit of state.\n 191 def magic_deco(arg):\n--> 192 call = lambda f, *a, **k: f(*a, **k)\n 193 \n 194 if isinstance(arg, collections.Callable):\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/magics/pylab.py in pylab(self, parameter_s)\n 86 import_all_status = True\n 87 \n---> 88 self.shell.enable_pylab(parameter_s, import_all=import_all_status)\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py in enable_pylab(self, gui, import_all)\n 2794 ns = {}\n 2795 try:\n-> 2796 gui = pylab_activate(ns, gui, import_all, self)\n 2797 except KeyError:\n 2798 error("Backend %r not supported" % gui)\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/pylabtools.py in pylab_activate(user_ns, gui, import_all, shell)\n 332 """\n 333 gui, backend = find_gui_and_backend(gui)\n--> 334 activate_matplotlib(backend)\n 335 import_pylab(user_ns, import_all)\n 336 if shell is not None:\n/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/pylabtools.py in activate_matplotlib(backend)\n 214 \n 215 import matplotlib.pyplot\n--> 216 matplotlib.pyplot.switch_backend(backend)\n 217 \n 218 # This must be imported last in the matplotlib series, after\n/home/bfroehle/.local/lib/python3.2/site-packages/matplotlib/pyplot.py in switch_backend(newbackend)\n 117 global new_figure_manager, draw_if_interactive, _show\n 118 matplotlib.use(newbackend, warn=False)\n--> 119 reload(matplotlib.backends)\n 120 from matplotlib.backends import pylab_setup\n 121 new_figure_manager, draw_if_interactive, _show = pylab_setup()\nNameError: global name \'reload\' is not defined\nIn [5]: ip=get_ipython()\nIn [6]: \'plot\' in ip.user_ns\nOut[6]: False')
----------------------------------------------------------------------
Ran 25 tests in 7.827s
FAILED (failures=2)
............................S..S......................S
----------------------------------------------------------------------
Ran 55 tests in 0.154s
OK (SKIP=3)
.......................................................................SS...S..............S............S..S....................................................S.........S..................................................
----------------------------------------------------------------------
Ran 221 tests in 2.316s
OK (SKIP=8)
......................................................
----------------------------------------------------------------------
Ran 54 tests in 0.041s
OK
.........................
----------------------------------------------------------------------
Ran 25 tests in 11.920s
OK
............................................................................................................S..........E........................K.E.....K..................S
======================================================================
ERROR: %pylab works on engines
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/testing/decorators.py", line 229, in skipper_func
return f(*args, **kwargs)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/parallel/tests/test_magics.py", line 323, in test_px_pylab
ip.magic("px %pylab inline")
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py", line 2158, in magic
return self.run_line_magic(magic_name, magic_arg_s)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/core/interactiveshell.py", line 2084, in run_line_magic
result = fn(*args)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/parallel/client/magics.py", line 234, in px
return self.parallel_execute(line)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/parallel/client/magics.py", line 259, in parallel_execute
result.get()
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/parallel/client/asyncresult.py", line 125, in get
raise self._exception
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/parallel/client/asyncresult.py", line 150, in wait
raise r
IPython.parallel.error.RemoteError: NameError(global name 'reload' is not defined)
======================================================================
ERROR: %pylab works on engines
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/testing/decorators.py", line 229, in skipper_func
return f(*args, **kwargs)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/parallel/tests/test_view.py", line 587, in test_magic_pylab
reply = ar.get(5)
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/parallel/client/asyncresult.py", line 125, in get
raise self._exception
File "/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/parallel/client/asyncresult.py", line 150, in wait
raise r
IPython.parallel.error.RemoteError: NameError(global name 'reload' is not defined)
----------------------------------------------------------------------
Ran 172 tests in 48.107s
FAILED (KNOWNFAIL=2, SKIP=2, errors=2)
**********************************************************************
IPython test group: IPython.config
**********************************************************************
IPython test group: IPython.core
**********************************************************************
IPython test group: IPython.extensions
**********************************************************************
IPython test group: IPython.frontend
**********************************************************************
IPython test group: IPython.lib
**********************************************************************
IPython test group: IPython.testing
**********************************************************************
IPython test group: IPython.utils
**********************************************************************
IPython test group: IPython.nbformat
**********************************************************************
IPython test group: IPython.zmq
**********************************************************************
IPython test group: IPython.parallel
**********************************************************************
Test suite completed for system with the following information:
{'commit_hash': '01c6c1a',
'commit_source': 'installation',
'default_encoding': 'UTF-8',
'ipython_path': '/home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython',
'ipython_version': '0.14.dev',
'os_name': 'posix',
'platform': 'Linux-3.2.0-24-generic-x86_64-with-Ubuntu-12.04-precise',
'sys_executable': '/home/bfroehle/.ipy_pr_tests/venv-python3.2/bin/python',
'sys_platform': 'linux2',
'sys_version': '3.2.3 (default, May 3 2012, 15:51:42) \n[GCC 4.6.3]'}
Tools and libraries available at test time:
curses cython matplotlib numpy pexpect pygments qt sqlite3 tornado zmq
Tools and libraries NOT available at test time:
oct2py pymongo rpy2 wx wx.aui
Ran 10 test groups in 123.613s
Status:
ERROR - 2 out of 10 test groups failed.
----------------------------------------
Runner failed: IPython.lib
You may wish to rerun this one individually, with:
/home/bfroehle/.ipy_pr_tests/venv-python3.2/bin/python /home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/testing/iptest.py IPython.lib
----------------------------------------
Runner failed: IPython.parallel
You may wish to rerun this one individually, with:
/home/bfroehle/.ipy_pr_tests/venv-python3.2/bin/python /home/bfroehle/.ipy_pr_tests/venv-python3.2/lib/python3.2/site-packages/ipython-0.14.dev-py3.2.egg/IPython/testing/iptest.py IPython.parallel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment