##// END OF EJS Templates
Merge pull request #9501 from takluyver/bracket-match-default-on...
Merge pull request #9501 from takluyver/bracket-match-default-on Enable bracket matching by default

File last commit:

r21345:e549d87b
r22376:cb5bb6b4 merge
Show More
test_run.py
517 lines | 15.6 KiB | text/x-python | PythonLexer
Thomas Kluyver
Add encoding cookie to test_run.
r6303 # encoding: utf-8
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 """Tests for code execution (%run and related), which is particularly tricky.
Because of how %run manages namespaces, and the fact that we are trying here to
verify subtle object deletion and reference counting issues, the %run tests
will be kept in this separate file. This makes it easier to aggregate in one
place the tricks needed to handle it; most other magics are much easier to test
and we do so in a common test_magic file.
"""
MinRK
Don't use nbformat.current in core
r18604
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 from __future__ import absolute_import
Takafumi Arakaki
Sort imports in test_run.py
r10553 import functools
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 import os
Thomas Kluyver
Add a couple more tests for %run options
r12568 from os.path import join as pjoin
Takafumi Arakaki
Sort imports in test_run.py
r10553 import random
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 import sys
import tempfile
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994 import textwrap
Takafumi Arakaki
Sort imports in test_run.py
r10553 import unittest
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
Min RK
remove testing.tools.monkeypatch...
r21116 try:
from unittest.mock import patch
except ImportError:
from mock import patch
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 import nose.tools as nt
Min RK
fix various tests on Windows...
r4105 from nose import SkipTest
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
from IPython.testing import decorators as dec
from IPython.testing import tools as tt
Thomas Kluyver
Fix almost all IPython.core tests for Python 3.
r4896 from IPython.utils import py3compat
MinRK
test traceback offset for %run and script
r14747 from IPython.utils.io import capture_output
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994 from IPython.utils.tempdir import TemporaryDirectory
Takafumi Arakaki
Add a failing test for "%run -d -m ..."
r10002 from IPython.core import debugger
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
def doctest_refbug():
"""Very nasty problem with references held by multiple runs of a script.
Thomas Kluyver
Replace links to launchpad bugs in comments/docstrings with equivalent github links.
r3917 See: https://github.com/ipython/ipython/issues/141
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
In [1]: _ip.clear_main_mod_cache()
# random
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 In [2]: %run refbug
In [3]: call_f()
lowercased: hello
In [4]: %run refbug
In [5]: call_f()
lowercased: hello
lowercased: hello
"""
def doctest_run_builtins():
r"""Check that %run doesn't damage __builtins__.
In [1]: import tempfile
In [2]: bid1 = id(__builtins__)
In [3]: fname = tempfile.mkstemp('.py')[1]
In [3]: f = open(fname,'w')
Thomas Kluyver
Fix various tests in IPython.core for Python 3.
r4895 In [4]: dummy= f.write('pass\n')
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
In [5]: f.flush()
In [6]: t1 = type(__builtins__)
Fernando Perez
Do not call %run with quotes, since on Windows quotes aren't stripped....
r2484 In [7]: %run $fname
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
In [7]: f.close()
In [8]: bid2 = id(__builtins__)
In [9]: t2 = type(__builtins__)
In [10]: t1 == t2
Out[10]: True
In [10]: bid1 == bid2
Out[10]: True
In [12]: try:
....: os.unlink(fname)
....: except:
....: pass
Bernardo B. Marques
remove all trailling spaces
r4872 ....:
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 """
Fernando Perez
Complete fix for __del__ errors with .reset(), add unit test.
r3107
Takafumi Arakaki
Add tests for %run option parser
r8121
def doctest_run_option_parser():
r"""Test option parser in %run.
In [1]: %run print_argv.py
[]
In [2]: %run print_argv.py print*.py
['print_argv.py']
Takafumi Arakaki
Fix doctest_run_option_parser for Windows...
r8548 In [3]: %run -G print_argv.py print*.py
Takafumi Arakaki
Add tests for %run option parser
r8121 ['print*.py']
Takafumi Arakaki
Fix doctest_run_option_parser for Windows...
r8548 """
@dec.skip_win32
def doctest_run_option_parser_for_posix():
r"""Test option parser in %run (Linux/OSX specific).
You need double quote to escape glob in POSIX systems:
In [1]: %run print_argv.py print\\*.py
['print*.py']
You can't use quote to escape glob in POSIX systems:
In [2]: %run print_argv.py 'print*.py'
Takafumi Arakaki
Add tests for %run option parser
r8121 ['print_argv.py']
Takafumi Arakaki
Fix doctest_run_option_parser for Windows...
r8548 """
Takafumi Arakaki
Use skip_if_not_win32 instead of skip_linux+osx
r8636 @dec.skip_if_not_win32
Takafumi Arakaki
Fix doctest_run_option_parser for Windows...
r8548 def doctest_run_option_parser_for_windows():
r"""Test option parser in %run (Windows specific).
In Windows, you can't escape ``*` `by backslash:
In [1]: %run print_argv.py print\\*.py
['print\\*.py']
You can use quote to escape glob:
In [2]: %run print_argv.py 'print*.py'
Takafumi Arakaki
Add tests for %run option parser
r8121 ['print*.py']
"""
Thomas Kluyver
Fix almost all IPython.core tests for Python 3.
r4896 @py3compat.doctest_refactor_print
Fernando Perez
Complete fix for __del__ errors with .reset(), add unit test.
r3107 def doctest_reset_del():
"""Test that resetting doesn't cause errors in __del__ methods.
In [2]: class A(object):
...: def __del__(self):
Thomas Kluyver
Make test work (i.e. it now fails, as expected).
r3156 ...: print str("Hi")
Bernardo B. Marques
remove all trailling spaces
r4872 ...:
Fernando Perez
Complete fix for __del__ errors with .reset(), add unit test.
r3107
In [3]: a = A()
In [4]: get_ipython().reset()
Thomas Kluyver
Make test work (i.e. it now fails, as expected).
r3156 Hi
Fernando Perez
Complete fix for __del__ errors with .reset(), add unit test.
r3107
In [5]: 1+1
Out[5]: 2
"""
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
# For some tests, it will be handy to organize them in a class with a common
# setup that makes a temp file
Fernando Perez
Fix extensions test suite (small, but now it runs and passes!)
r2415 class TestMagicRunPass(tt.TempFileMixin):
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
def setup(self):
"""Make a valid python temp file."""
self.mktmp('pass\n')
Alcides
- Test case correctly fails....
r5238
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 def run_tmpfile(self):
_ip = get_ipython()
# This fails on Windows if self.tmpfile.name has spaces or "~" in it.
# See below and ticket https://bugs.launchpad.net/bugs/366353
Fernando Perez
Do not call %run with quotes, since on Windows quotes aren't stripped....
r2484 _ip.magic('run %s' % self.fname)
Alcides
- Test case correctly fails....
r5238
def run_tmpfile_p(self):
_ip = get_ipython()
# This fails on Windows if self.tmpfile.name has spaces or "~" in it.
# See below and ticket https://bugs.launchpad.net/bugs/366353
_ip.magic('run -p %s' % self.fname)
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
def test_builtins_id(self):
"""Check that %run doesn't damage __builtins__ """
_ip = get_ipython()
# Test that the id of __builtins__ is not modified by %run
bid1 = id(_ip.user_ns['__builtins__'])
self.run_tmpfile()
bid2 = id(_ip.user_ns['__builtins__'])
Bradley M. Froehle
Stop duplicating `nt.assert*` in `IPython.testing.tools`.
r7879 nt.assert_equal(bid1, bid2)
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
def test_builtins_type(self):
"""Check that the type of __builtins__ doesn't change with %run.
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 However, the above could pass if __builtins__ was already modified to
be a dict (it should be a module) by a previous use of %run. So we
also check explicitly that it really is a module:
"""
_ip = get_ipython()
self.run_tmpfile()
Bradley M. Froehle
Stop duplicating `nt.assert*` in `IPython.testing.tools`.
r7879 nt.assert_equal(type(_ip.user_ns['__builtins__']),type(sys))
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
def test_prompts(self):
"""Test that prompts correctly generate after %run"""
self.run_tmpfile()
_ip = get_ipython()
Thomas Kluyver
Refactor prompt handling into new prompt manager.
r5495 p2 = _ip.prompt_manager.render('in2').strip()
Bradley M. Froehle
s/nt.assert_equals/nt.assert_equal/
r7875 nt.assert_equal(p2[:3], '...')
Alcides
- Test case correctly fails....
r5238
def test_run_profile( self ):
"""Test that the option -p, which invokes the profiler, do not
crash by invoking execfile"""
_ip = get_ipython()
self.run_tmpfile_p()
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
Fernando Perez
Fix extensions test suite (small, but now it runs and passes!)
r2415 class TestMagicRunSimple(tt.TempFileMixin):
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
def test_simpledef(self):
"""Test that simple class definitions work."""
src = ("class foo: pass\n"
"def f(): return foo()")
self.mktmp(src)
Fernando Perez
More win32 test fixes and a new test....
r2451 _ip.magic('run %s' % self.fname)
Thomas Kluyver
Remove runlines method and calls to it.
r3752 _ip.run_cell('t = isinstance(f(), foo)')
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 nt.assert_true(_ip.user_ns['t'])
Fernando Perez
Various fixes for IPython.core tests to pass under win32.
r2446
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 def test_obj_del(self):
"""Test that object's __del__ methods are called on exit."""
Min RK
fix various tests on Windows...
r4105 if sys.platform == 'win32':
try:
import win32api
except ImportError:
raise SkipTest("Test requires pywin32")
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 src = ("class A(object):\n"
" def __del__(self):\n"
" print 'object A deleted'\n"
"a = A()\n")
Thomas Kluyver
Fix almost all IPython.core tests for Python 3.
r4896 self.mktmp(py3compat.doctest_refactor_print(src))
MinRK
Allow IPython to run without sqlite3...
r5147 if dec.module_not_available('sqlite3'):
err = 'WARNING: IPython History requires SQLite, your history will not be saved\n'
else:
err = None
tt.ipexec_validate(self.fname, 'object A deleted', err)
Paul Ivanov
test for GH-238 %run's aggressive name cleaning
r3502 def test_aggressive_namespace_cleanup(self):
"""Test that namespace cleanup is not too aggressive GH-238
Paul Ivanov
added the skip_known decorator
r3503
Returning from another run magic deletes the namespace"""
Paul Ivanov
test for GH-238 %run's aggressive name cleaning
r3502 # see ticket https://github.com/ipython/ipython/issues/238
class secondtmp(tt.TempFileMixin): pass
empty = secondtmp()
empty.mktmp('')
Thomas Kluyver
Fix test for Python 3 on Windows....
r11333 # On Windows, the filename will have \users in it, so we need to use the
# repr so that the \u becomes \\u.
Paul Ivanov
test for GH-238 %run's aggressive name cleaning
r3502 src = ("ip = get_ipython()\n"
"for i in range(5):\n"
" try:\n"
Thomas Kluyver
Fix test for Python 3 on Windows....
r11333 " ip.magic(%r)\n"
Matthias BUSSONNIER
conform to pep 3110...
r7787 " except NameError as e:\n"
Thomas Kluyver
Minor tweak to test for Python 3
r11209 " print(i)\n"
Thomas Kluyver
Fix test for Python 3 on Windows....
r11333 " break\n" % ('run ' + empty.fname))
Thomas Kluyver
Minor tweak to test for Python 3
r11209 self.mktmp(src)
Paul Ivanov
test for GH-238 %run's aggressive name cleaning
r3502 _ip.magic('run %s' % self.fname)
Thomas Kluyver
Remove runlines method and calls to it.
r3752 _ip.run_cell('ip == get_ipython()')
Thomas Kluyver
Another passing test :-)
r11208 nt.assert_equal(_ip.user_ns['i'], 4)
Thomas Kluyver
Add failing test for gh-3547
r11204
def test_run_second(self):
"""Test that running a second file doesn't clobber the first, gh-3547
"""
self.mktmp("avar = 1\n"
"def afunc():\n"
" return avar\n")
empty = tt.TempFileMixin()
empty.mktmp("")
_ip.magic('run %s' % self.fname)
_ip.magic('run %s' % empty.fname)
nt.assert_equal(_ip.user_ns['afunc'](), 1)
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414
Fernando Perez
Various fixes for IPython.core tests to pass under win32.
r2446 @dec.skip_win32
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 def test_tclass(self):
mydir = os.path.dirname(__file__)
tc = os.path.join(mydir, 'tclass')
src = ("%%run '%s' C-first\n"
Thomas Kluyver
Make test of %run more rigorous.
r3763 "%%run '%s' C-second\n"
"%%run '%s' C-third\n") % (tc, tc, tc)
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 self.mktmp(src, '.ipy')
out = """\
MinRK
fix tests that depended on unicode sys.argv
r5126 ARGV 1-: ['C-first']
ARGV 1-: ['C-second']
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 tclass.py: deleting object: C-first
MinRK
fix tests that depended on unicode sys.argv
r5126 ARGV 1-: ['C-third']
Thomas Kluyver
Shell's reset method clears namespace from last %run command.
r3762 tclass.py: deleting object: C-second
Thomas Kluyver
Make test of %run more rigorous.
r3763 tclass.py: deleting object: C-third
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 """
MinRK
Allow IPython to run without sqlite3...
r5147 if dec.module_not_available('sqlite3'):
err = 'WARNING: IPython History requires SQLite, your history will not be saved\n'
else:
err = None
tt.ipexec_validate(self.fname, out, err)
Thomas Kluyver
Add test for gh-693 (%run -i after %reset).
r5466
def test_run_i_after_reset(self):
"""Check that %run -i still works after %reset (gh-693)"""
src = "yy = zz\n"
self.mktmp(src)
_ip.run_cell("zz = 23")
_ip.magic('run -i %s' % self.fname)
Bradley M. Froehle
Stop duplicating `nt.assert*` in `IPython.testing.tools`.
r7879 nt.assert_equal(_ip.user_ns['yy'], 23)
Thomas Kluyver
Add test for gh-693 (%run -i after %reset).
r5466 _ip.magic('reset -f')
_ip.run_cell("zz = 23")
_ip.magic('run -i %s' % self.fname)
Bradley M. Froehle
Stop duplicating `nt.assert*` in `IPython.testing.tools`.
r7879 nt.assert_equal(_ip.user_ns['yy'], 23)
Thomas Kluyver
Fix for %run on a Python file using non-default encoding.
r6300
def test_unicode(self):
"""Check that files in odd encodings are accepted."""
mydir = os.path.dirname(__file__)
na = os.path.join(mydir, 'nonascii.py')
Jonathan March
Fix Windows pathname issue in 'odd encoding' test....
r7674 _ip.magic('run "%s"' % na)
Bradley M. Froehle
Stop duplicating `nt.assert*` in `IPython.testing.tools`.
r7879 nt.assert_equal(_ip.user_ns['u'], u'Ўт№Ф')
Bradley M. Froehle
Add test for `__file__` behavior in `%run`.
r8530
def test_run_py_file_attribute(self):
"""Test handling of `__file__` attribute in `%run <file>.py`."""
src = "t = __file__\n"
self.mktmp(src)
_missing = object()
file1 = _ip.user_ns.get('__file__', _missing)
_ip.magic('run %s' % self.fname)
file2 = _ip.user_ns.get('__file__', _missing)
# Check that __file__ was equal to the filename in the script's
# namespace.
nt.assert_equal(_ip.user_ns['t'], self.fname)
# Check that __file__ was not leaked back into user_ns.
nt.assert_equal(file1, file2)
def test_run_ipy_file_attribute(self):
"""Test handling of `__file__` attribute in `%run <file.ipy>`."""
src = "t = __file__\n"
self.mktmp(src, ext='.ipy')
_missing = object()
file1 = _ip.user_ns.get('__file__', _missing)
_ip.magic('run %s' % self.fname)
file2 = _ip.user_ns.get('__file__', _missing)
# Check that __file__ was equal to the filename in the script's
# namespace.
nt.assert_equal(_ip.user_ns['t'], self.fname)
# Check that __file__ was not leaked back into user_ns.
nt.assert_equal(file1, file2)
Robert Marchman
rlmv - Added test for issue #2784...
r9360
def test_run_formatting(self):
""" Test that %run -t -N<N> does not raise a TypeError for N > 1."""
src = "pass"
self.mktmp(src)
_ip.magic('run -t -N 1 %s' % self.fname)
_ip.magic('run -t -N 10 %s' % self.fname)
Thomas Kluyver
Add a couple more tests for %run options
r12568
def test_ignore_sys_exit(self):
"""Test the -e option to ignore sys.exit()"""
src = "import sys; sys.exit(1)"
self.mktmp(src)
with tt.AssertPrints('SystemExit'):
_ip.magic('run %s' % self.fname)
with tt.AssertNotPrints('SystemExit'):
_ip.magic('run -e %s' % self.fname)
Thomas Kluyver
Skip some tests if nbformat not importable...
r16982
Min RK
jupyter_nbformat is now nbformat
r21345 @dec.skip_without('nbformat') # Requires jsonschema
MinRK
test %run notebook.ipynb
r13646 def test_run_nb(self):
"""Test %run notebook.ipynb"""
Min RK
jupyter_nbformat is now nbformat
r21345 from nbformat import v4, writes
MinRK
Don't use nbformat.current in core
r18604 nb = v4.new_notebook(
MinRK
update IPython.core to nbformat 4...
r18585 cells=[
MinRK
Don't use nbformat.current in core
r18604 v4.new_markdown_cell("The Ultimate Question of Everything"),
v4.new_code_cell("answer=42")
MinRK
test %run notebook.ipynb
r13646 ]
)
MinRK
Don't use nbformat.current in core
r18604 src = writes(nb, version=4)
MinRK
test %run notebook.ipynb
r13646 self.mktmp(src, ext='.ipynb')
_ip.magic("run %s" % self.fname)
nt.assert_equal(_ip.user_ns['answer'], 42)
Thomas Kluyver
Add a couple more tests for %run options
r12568
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994
class TestMagicRunWithPackage(unittest.TestCase):
def writefile(self, name, content):
path = os.path.join(self.tempdir.name, name)
d = os.path.dirname(path)
if not os.path.isdir(d):
os.makedirs(d)
with open(path, 'w') as f:
f.write(textwrap.dedent(content))
def setUp(self):
self.package = package = 'tmp{0}'.format(repr(random.random())[2:])
"""Temporary valid python package name."""
self.value = int(random.random() * 10000)
self.tempdir = TemporaryDirectory()
Thomas Kluyver
Python 3 compatibility for os.getcwdu()
r13447 self.__orig_cwd = py3compat.getcwd()
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994 sys.path.insert(0, self.tempdir.name)
self.writefile(os.path.join(package, '__init__.py'), '')
Takafumi Arakaki
Fix ChangedPyFileTest.test_changing_py_file failure
r10007 self.writefile(os.path.join(package, 'sub.py'), """
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994 x = {0!r}
""".format(self.value))
self.writefile(os.path.join(package, 'relative.py'), """
Takafumi Arakaki
Fix ChangedPyFileTest.test_changing_py_file failure
r10007 from .sub import x
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994 """)
self.writefile(os.path.join(package, 'absolute.py'), """
Takafumi Arakaki
Fix ChangedPyFileTest.test_changing_py_file failure
r10007 from {0}.sub import x
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994 """.format(package))
def tearDown(self):
os.chdir(self.__orig_cwd)
Takafumi Arakaki
Use list comprehension instead of filter+lambda
r10010 sys.path[:] = [p for p in sys.path if p != self.tempdir.name]
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994 self.tempdir.cleanup()
Takafumi Arakaki
Add a failing test for "%run -p -m ..."
r9998 def check_run_submodule(self, submodule, opts=''):
Thomas Kluyver
Make tests for '%run -m' more robust
r12567 _ip.user_ns.pop('x', None)
Takafumi Arakaki
Add a failing test for "%run -p -m ..."
r9998 _ip.magic('run {2} -m {0}.{1}'.format(self.package, submodule, opts))
Takafumi Arakaki
Test for #2727 (%run -m doesn't support relative imports)...
r9994 self.assertEqual(_ip.user_ns['x'], self.value,
'Variable `x` is not loaded from module `{0}`.'
.format(submodule))
def test_run_submodule_with_absolute_import(self):
self.check_run_submodule('absolute')
def test_run_submodule_with_relative_import(self):
"""Run submodule that has a relative import statement (#2727)."""
self.check_run_submodule('relative')
Takafumi Arakaki
Add a failing test for "%run -p -m ..."
r9998
def test_prun_submodule_with_absolute_import(self):
self.check_run_submodule('absolute', '-p')
def test_prun_submodule_with_relative_import(self):
self.check_run_submodule('relative', '-p')
Takafumi Arakaki
Add a failing test for "%run -d -m ..."
r10002
def with_fake_debugger(func):
@functools.wraps(func)
def wrapper(*args, **kwds):
Min RK
remove testing.tools.monkeypatch...
r21116 with patch.object(debugger.Pdb, 'run', staticmethod(eval)):
Takafumi Arakaki
Add a failing test for "%run -d -m ..."
r10002 return func(*args, **kwds)
return wrapper
@with_fake_debugger
def test_debug_run_submodule_with_absolute_import(self):
self.check_run_submodule('absolute', '-d')
@with_fake_debugger
def test_debug_run_submodule_with_relative_import(self):
self.check_run_submodule('relative', '-d')
Thomas Kluyver
Add a couple more tests for %run options
r12568
def test_run__name__():
with TemporaryDirectory() as td:
path = pjoin(td, 'foo.py')
with open(path, 'w') as f:
f.write("q = __name__")
_ip.user_ns.pop('q', None)
_ip.magic('run {}'.format(path))
nt.assert_equal(_ip.user_ns.pop('q'), '__main__')
_ip.magic('run -n {}'.format(path))
nt.assert_equal(_ip.user_ns.pop('q'), 'foo')
MinRK
test traceback offset for %run and script
r14747
def test_run_tb():
"""Test traceback offset in %run"""
with TemporaryDirectory() as td:
path = pjoin(td, 'foo.py')
with open(path, 'w') as f:
f.write('\n'.join([
"def foo():",
" return bar()",
"def bar():",
" raise RuntimeError('hello!')",
"foo()",
]))
with capture_output() as io:
_ip.magic('run {}'.format(path))
out = io.stdout
nt.assert_not_in("execfile", out)
nt.assert_in("RuntimeError", out)
nt.assert_equal(out.count("---->"), 3)
Thomas Kluyver
Mark known failure test on Windows....
r14846 @dec.knownfailureif(sys.platform == 'win32', "writes to io.stdout aren't captured on Windows")
MinRK
test traceback offset for %run and script
r14747 def test_script_tb():
"""Test traceback offset in `ipython script.py`"""
with TemporaryDirectory() as td:
path = pjoin(td, 'foo.py')
with open(path, 'w') as f:
f.write('\n'.join([
"def foo():",
" return bar()",
"def bar():",
" raise RuntimeError('hello!')",
"foo()",
]))
out, err = tt.ipexec(path)
nt.assert_not_in("execfile", out)
nt.assert_in("RuntimeError", out)
nt.assert_equal(out.count("---->"), 3)