Skip to content

Instantly share code, notes, and snippets.

@minrk
Created June 11, 2012 09:08
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 minrk/2909198 to your computer and use it in GitHub Desktop.
Save minrk/2909198 to your computer and use it in GitHub Desktop.
IPython test log
..............................................
----------------------------------------------------------------------
Ran 46 tests in 0.069s
OK
[?1034h...................................................................................................................................................................................................................................................................................................................................................................................................................................................K.........
----------------------------------------------------------------------
Ran 450 tests in 9.930s
OK (KNOWNFAIL=1)
[?1034h......EEEE
======================================================================
ERROR: IPython.extensions.tests.test_cythonmagic.test_cython_inline
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/nose-1.1.2-py2.7.egg/nose/case.py", line 197, in runTest
self.test(*self.arg)
File "/Users/minrk/dev/ip/mine/IPython/extensions/tests/test_cythonmagic.py", line 28, in test_cython_inline
result = ip.run_cell_magic('cython_inline','','return a+b')
File "/Users/minrk/dev/ip/mine/IPython/core/interactiveshell.py", line 2098, in run_cell_magic
result = fn(line, cell)
File "<string>", line 2, in cython_inline
File "/Users/minrk/dev/ip/mine/IPython/core/magic.py", line 190, in <lambda>
call = lambda f, *a, **k: f(*a, **k)
File "/Users/minrk/dev/ip/mine/IPython/extensions/cythonmagic.py", line 72, in cython_inline
return Cython.inline(cell, locals=locs, globals=globs)
File "/Users/minrk/dev/py/cython/Cython/Shadow.py", line 38, in inline
return cython_inline(f, *args, **kwds)
File "/Users/minrk/dev/py/cython/Cython/Build/Inline.py", line 186, in cython_inline
build_extension.run()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 446, in build_extensions
self.check_extensions_list(self.extensions)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 363, in check_extensions_list
("each element of 'ext_modules' option must be an "
DistutilsSetupError: each element of 'ext_modules' option must be an Extension instance or 2-tuple
-------------------- >> begin captured stdout << ---------------------
Compiling /Users/minrk/Library/Caches/cython/inline/_cython_inline_aeb6dbee7ae920df7e5d7490096e6c93.pyx because it changed.
Cythonizing /Users/minrk/Library/Caches/cython/inline/_cython_inline_aeb6dbee7ae920df7e5d7490096e6c93.pyx
--------------------- >> end captured stdout << ----------------------
======================================================================
ERROR: IPython.extensions.tests.test_cythonmagic.test_cython_pyximport
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/nose-1.1.2-py2.7.egg/nose/case.py", line 197, in runTest
self.test(*self.arg)
File "/Users/minrk/dev/ip/mine/IPython/extensions/tests/test_cythonmagic.py", line 34, in test_cython_pyximport
ip.run_cell_magic('cython_pyximport', module_name, code)
File "/Users/minrk/dev/ip/mine/IPython/core/interactiveshell.py", line 2098, in run_cell_magic
result = fn(line, cell)
File "<string>", line 2, in cython_pyximport
File "/Users/minrk/dev/ip/mine/IPython/core/magic.py", line 190, in <lambda>
call = lambda f, *a, **k: f(*a, **k)
File "/Users/minrk/dev/ip/mine/IPython/extensions/cythonmagic.py", line 103, in cython_pyximport
__import__(module_name)
File "/Users/minrk/dev/py/cython/pyximport/pyximport.py", line 365, in load_module
self.pyxbuild_dir)
File "/Users/minrk/dev/py/cython/pyximport/pyximport.py", line 199, in load_module
so_path = build_module(module_name, pyxfilename, pyxbuild_dir)
File "/Users/minrk/dev/py/cython/pyximport/pyximport.py", line 179, in build_module
reload_support=pyxargs.reload_support)
File "/Users/minrk/dev/py/cython/pyximport/pyxbuild.py", line 85, in pyx_to_dll
dist.run_commands()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 953, in run_commands
self.run_command(cmd)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/dist.py", line 972, in run_command
cmd_obj.run()
File "/Users/minrk/dev/py/cython/Cython/Distutils/build_ext.py", line 163, in run
_build_ext.build_ext.run(self)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/Users/minrk/dev/py/cython/Cython/Distutils/build_ext.py", line 167, in build_extensions
self.check_extensions_list(self.extensions)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 363, in check_extensions_list
("each element of 'ext_modules' option must be an "
ImportError: Building module _test_cython_pyximport failed: ["DistutilsSetupError: each element of 'ext_modules' option must be an Extension instance or 2-tuple\n"]
======================================================================
ERROR: IPython.extensions.tests.test_cythonmagic.test_cython
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/nose-1.1.2-py2.7.egg/nose/case.py", line 197, in runTest
self.test(*self.arg)
File "/Users/minrk/dev/ip/mine/IPython/extensions/tests/test_cythonmagic.py", line 44, in test_cython
ip.run_cell_magic('cython', '', code)
File "/Users/minrk/dev/ip/mine/IPython/core/interactiveshell.py", line 2098, in run_cell_magic
result = fn(line, cell)
File "<string>", line 2, in cython
File "/Users/minrk/dev/ip/mine/IPython/core/magic.py", line 190, in <lambda>
call = lambda f, *a, **k: f(*a, **k)
File "/Users/minrk/dev/ip/mine/IPython/extensions/cythonmagic.py", line 186, in cython
build_extension.run()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 446, in build_extensions
self.check_extensions_list(self.extensions)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 363, in check_extensions_list
("each element of 'ext_modules' option must be an "
DistutilsSetupError: each element of 'ext_modules' option must be an Extension instance or 2-tuple
======================================================================
ERROR: IPython.extensions.tests.test_cythonmagic.test_extlibs
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/nose-1.1.2-py2.7.egg/nose/case.py", line 197, in runTest
self.test(*self.arg)
File "/Users/minrk/dev/ip/mine/IPython/testing/decorators.py", line 228, in skipper_func
return f(*args, **kwargs)
File "/Users/minrk/dev/ip/mine/IPython/extensions/tests/test_cythonmagic.py", line 56, in test_extlibs
ip.run_cell_magic('cython', '-l m', code)
File "/Users/minrk/dev/ip/mine/IPython/core/interactiveshell.py", line 2098, in run_cell_magic
result = fn(line, cell)
File "<string>", line 2, in cython
File "/Users/minrk/dev/ip/mine/IPython/core/magic.py", line 190, in <lambda>
call = lambda f, *a, **k: f(*a, **k)
File "/Users/minrk/dev/ip/mine/IPython/extensions/cythonmagic.py", line 186, in cython
build_extension.run()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 340, in run
self.build_extensions()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 446, in build_extensions
self.check_extensions_list(self.extensions)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/distutils/command/build_ext.py", line 363, in check_extensions_list
("each element of 'ext_modules' option must be an "
DistutilsSetupError: each element of 'ext_modules' option must be an Extension instance or 2-tuple
----------------------------------------------------------------------
Ran 10 tests in 7.228s
FAILED (errors=4)
[?1034h..........................
----------------------------------------------------------------------
Ran 26 tests in 8.675s
OK
[?1034h......................................
----------------------------------------------------------------------
Ran 39 tests in 5.988s
OK
[?1034h
----------------------------------------------------------------------
Ran 0 tests in 0.000s
OK
[?1034h..............................S....S......................S
----------------------------------------------------------------------
Ran 63 tests in 0.118s
OK (SKIP=3)
[?1034h......................................................................SS...S..............S............S..S.............................................................................................................
----------------------------------------------------------------------
Ran 217 tests in 2.055s
OK (SKIP=6)
[?1034h......................................................
----------------------------------------------------------------------
Ran 54 tests in 0.059s
OK
[?1034h......................................................................................................................................................
----------------------------------------------------------------------
Ran 160 tests in 12.910s
OK
[?1034h................................................................................................S...........S.............................................................................S
----------------------------------------------------------------------
Ran 188 tests in 67.503s
OK (SKIP=3)
[?1034h**********************************************************************
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.scripts
**********************************************************************
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': '8f74c17',
'commit_source': 'repository',
'ipython_path': '/Users/minrk/dev/ip/mine/IPython',
'ipython_version': '0.13.dev',
'os_name': 'posix',
'platform': 'Darwin-11.4.0-x86_64-i386-64bit',
'sys_executable': '/Users/minrk/.ipy_pr_tests/venv-python2.7/bin/python',
'sys_platform': 'darwin',
'sys_version': '2.7.1 (r271:86832, Jul 31 2011, 19:30:53) \n[GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)]'}
Tools and libraries available at test time:
curses cython matplotlib numpy pexpect pygments pymongo qt sqlite3 tornado zmq
Tools and libraries NOT available at test time:
rpy2 wx wx.aui
Ran 11 test groups in 143.059s
Status:
ERROR - 1 out of 11 test groups failed.
----------------------------------------
Runner failed: IPython.extensions
You may wish to rerun this one individually, with:
/Users/minrk/.ipy_pr_tests/venv-python2.7/bin/python /Users/minrk/dev/ip/mine/IPython/testing/iptest.py IPython.extensions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment