##// END OF EJS Templates
Split out iptestcontroller to control test process.
Split out iptestcontroller to control test process.

File last commit:

r12607:fc506b0f
r12607:fc506b0f
Show More
iptest.py
365 lines | 14.4 KiB | text/x-python | PythonLexer
Fernando Perez
Add module I forgot
r1574 # -*- coding: utf-8 -*-
"""IPython Test Suite Runner.
Fernando Perez
Cleanup testing machinery.
r1851
Brian Granger
Refactored iptest to include the iptestall capabilities....
r1972 This module provides a main entry point to a user script to test IPython
itself from the command line. There are two ways of running this script:
1. With the syntax `iptest all`. This runs our entire test suite by
Brian Granger
Removed Twisted related things from setup scripts and testing.
r3486 calling this script (with different arguments) recursively. This
Brian Granger
Refactored iptest to include the iptestall capabilities....
r1972 causes modules and package to be tested in different processes, using nose
or trial where appropriate.
2. With the regular nose syntax, like `iptest -vvs IPython`. In this form
the script simply calls nose, but with special command line flags and
plugins loaded.
Fernando Perez
Add module I forgot
r1574 """
Fernando Perez
Cleanup testing machinery.
r1851 #-----------------------------------------------------------------------------
Matthias BUSSONNIER
update copyright to 2011/20xx-2011...
r5390 # Copyright (C) 2009-2011 The IPython Development Team
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 #
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
Fernando Perez
Cleanup testing machinery.
r1851 #-----------------------------------------------------------------------------
Matthias BUSSONNIER
use print function in module with `print >>`
r7817 from __future__ import print_function
Fernando Perez
Cleanup testing machinery.
r1851
Fernando Perez
Remove accidentally introduced runtime nose dependencies.
r2442 # Stdlib
MinRK
use glob for bad exclusion warning...
r7412 import glob
Brian Granger
Refactored iptest to include the iptestall capabilities....
r1972 import os
import os.path as path
Fernando Perez
Add module I forgot
r1574 import sys
import warnings
Fernando Perez
Remove accidentally introduced runtime nose dependencies.
r2442 # Now, proceed to import nose itself
Fernando Perez
Add module I forgot
r1574 import nose.plugins.builtin
Thomas Kluyver
Monkeypatch Xunit to count known failures as skips, not errors.
r6101 from nose.plugins.xunit import Xunit
from nose import SkipTest
Fernando Perez
Cleanup testing machinery.
r1851 from nose.core import TestProgram
Fernando Perez
Add module I forgot
r1574
Fernando Perez
Remove accidentally introduced runtime nose dependencies.
r2442 # Our own imports
MinRK
allow more processing in test_for...
r4857 from IPython.utils.importstring import import_item
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 from IPython.utils.path import get_ipython_package_dir
MinRK
warn on nonexistent exclusions
r7121 from IPython.utils.warn import warn
Brian Granger
Work to address the review comments on Fernando's branch....
r2498
Fernando Perez
Let iptest pass arguments correctly to nose (in-process or in subprocess)....
r2480 from IPython.testing import globalipapp
from IPython.testing.plugin.ipdoctest import IPythonDoctest
Thomas Kluyver
Monkeypatch Xunit to count known failures as skips, not errors.
r6101 from IPython.external.decorators import KnownFailure, knownfailureif
Fernando Perez
Add module I forgot
r1574
Brian Granger
Making the doctest exclude paths os independent.
r1979 pjoin = path.join
Fernando Perez
Robustness fixes in test suite machinery....
r2494
#-----------------------------------------------------------------------------
# Globals
#-----------------------------------------------------------------------------
Fernando Perez
Cleanup testing machinery.
r1851 #-----------------------------------------------------------------------------
Fernando Perez
Work in multiple places to improve state of the test suite....
r2398 # Warnings control
#-----------------------------------------------------------------------------
Brian Granger
Minor cleanup in iptest.py and growl.py.
r2512
Fernando Perez
Work in multiple places to improve state of the test suite....
r2398 # Twisted generates annoying warnings with Python 2.6, as will do other code
# that imports 'sets' as of today
warnings.filterwarnings('ignore', 'the sets module is deprecated',
DeprecationWarning )
Fernando Perez
Fixes for test suite in win32 when all dependencies (esp. Twisted) are...
r2461 # This one also comes from Twisted
warnings.filterwarnings('ignore', 'the sha module is deprecated',
DeprecationWarning)
Fernando Perez
Fixes to make test suite more robust on Fedora....
r2483 # Wx on Fedora11 spits these out
warnings.filterwarnings('ignore', 'wxPython/wxWidgets release number mismatch',
UserWarning)
Thomas Kluyver
Monkeypatch Xunit to count known failures as skips, not errors.
r6101 # ------------------------------------------------------------------------------
# Monkeypatch Xunit to count known failures as skipped.
# ------------------------------------------------------------------------------
Thomas Kluyver
Make separate function to monkeypatch Xunit.
r6102 def monkeypatch_xunit():
Thomas Kluyver
Monkeypatch Xunit to count known failures as skips, not errors.
r6101 try:
knownfailureif(True)(lambda: None)()
except Exception as e:
KnownFailureTest = type(e)
def addError(self, test, err, capt=None):
if issubclass(err[0], KnownFailureTest):
err = (SkipTest,) + err[1:]
return self.orig_addError(test, err, capt)
Xunit.orig_addError = Xunit.addError
Xunit.addError = addError
Fernando Perez
Work in multiple places to improve state of the test suite....
r2398 #-----------------------------------------------------------------------------
Administrator
Fixing bugs with the testing system.
r1981 # Logic for skipping doctests
Fernando Perez
Cleanup testing machinery.
r1851 #-----------------------------------------------------------------------------
MinRK
allow more processing in test_for...
r4857 def extract_version(mod):
return mod.__version__
Fernando Perez
Cleanup testing machinery.
r1851
MinRK
allow more processing in test_for...
r4857 def test_for(item, min_version=None, callback=extract_version):
"""Test to see if item is importable, and optionally check against a minimum
version.
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
allow more processing in test_for...
r4857 If min_version is given, the default behavior is to check against the
`__version__` attribute of the item, but specifying `callback` allows you to
extract the value you are interested in. e.g::
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
allow more processing in test_for...
r4857 In [1]: import sys
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
allow more processing in test_for...
r4857 In [2]: from IPython.testing.iptest import test_for
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
allow more processing in test_for...
r4857 In [3]: test_for('sys', (2,6), callback=lambda sys: sys.version_info)
Out[3]: True
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
allow more processing in test_for...
r4857 """
Administrator
Fixing bugs with the testing system.
r1981 try:
MinRK
allow more processing in test_for...
r4857 check = import_item(item)
Fernando Perez
Make the test suite runnable without X11 connections....
r2488 except (ImportError, RuntimeError):
MinRK
allow more processing in test_for...
r4857 # GTK reports Runtime error if it can't be initialized even if it's
Fernando Perez
Make the test suite runnable without X11 connections....
r2488 # importable.
Administrator
Fixing bugs with the testing system.
r1981 return False
else:
MinRK
add zmq checking in iptest
r3640 if min_version:
MinRK
allow more processing in test_for...
r4857 if callback:
# extra processing step to get version to compare
check = callback(check)
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
allow more processing in test_for...
r4857 return check >= min_version
MinRK
add zmq checking in iptest
r3640 else:
return True
Administrator
Fixing bugs with the testing system.
r1981
Fernando Perez
Added diagnostics printout at the end of the test suite....
r2496 # Global dict where we can store information on what we have and what we don't
# have available at test run time
have = {}
have['curses'] = test_for('_curses')
Fernando Perez
Do not generate output for empty figures in Qt console....
r3731 have['matplotlib'] = test_for('matplotlib')
Fernando Perez
Ensure that no tests are attempted if numpy or rpy2 are not present....
r7224 have['numpy'] = test_for('numpy')
MinRK
allow more processing in test_for...
r4857 have['pexpect'] = test_for('IPython.external.pexpect')
Fernando Perez
Do not generate output for empty figures in Qt console....
r3731 have['pymongo'] = test_for('pymongo')
MinRK
test for pygments before running qt tests
r6874 have['pygments'] = test_for('pygments')
MinRK
update test exclusions...
r3761 have['qt'] = test_for('IPython.external.qt')
Fernando Perez
Ensure that no tests are attempted if numpy or rpy2 are not present....
r7224 have['rpy2'] = test_for('rpy2')
MinRK
Allow IPython to run without sqlite3...
r5147 have['sqlite3'] = test_for('sqlite3')
Brian Granger
More code review changes:...
r7102 have['cython'] = test_for('Cython')
Stefan van der Walt
Skip octavemagic tests if oct2py is unavailable.
r7385 have['oct2py'] = test_for('oct2py')
MinRK
allow more processing in test_for...
r4857 have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
Bradley M. Froehle
Skip notebookapp testing if jinja2 is not available.
r8908 have['jinja2'] = test_for('jinja2')
Fernando Perez
Ensure that no tests are attempted if numpy or rpy2 are not present....
r7224 have['wx'] = test_for('wx')
have['wx.aui'] = test_for('wx.aui')
Brian Granger
Adding exclusion for the azure module in iptest.
r8184 have['azure'] = test_for('azure')
Brian E. Granger
Fixing test logic for nbconvert to get tests to pass.
r11095 have['sphinx'] = test_for('sphinx')
MinRK
allow more processing in test_for...
r4857
MinRK
bump minimum pyzmq version to 2.1.11...
r9336 min_zmq = (2,1,11)
MinRK
fix callback testing for pyzmq version_info
r9339 have['zmq'] = test_for('zmq.pyzmq_version_info', min_zmq, callback=lambda x: x())
Administrator
Fixing bugs with the testing system.
r1981
Fernando Perez
Robustness fixes in test suite machinery....
r2494 #-----------------------------------------------------------------------------
# Functions and classes
#-----------------------------------------------------------------------------
Administrator
Fixing doctest EXCLUDES in iptest on win32....
r1980
Fernando Perez
Added diagnostics printout at the end of the test suite....
r2496
Brian Granger
Refactored iptest.py to work with new package org....
r2079 def make_exclude():
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 """Make patterns of modules and packages to exclude from testing.
Brian Granger
Minor cleanup in iptest.py and growl.py.
r2512
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 For the IPythonDoctest plugin, we need to exclude certain patterns that
cause testing problems. We should strive to minimize the number of
Brian Granger
Minor cleanup in iptest.py and growl.py.
r2512 skipped modules, since this means untested code.
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 These modules and packages will NOT get scanned by nose at all for tests.
"""
# Simple utility to make IPython paths more readably, we need a lot of
# these below
ipjoin = lambda *paths: pjoin('IPython', *paths)
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 exclusions = [ipjoin('external'),
ipjoin('quarantine'),
ipjoin('deathrow'),
Fernando Perez
Fixes for test suite in win32 when all dependencies (esp. Twisted) are...
r2461 # This guy is probably attic material
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 ipjoin('testing', 'mkdoctests'),
Fernando Perez
Fixes for test suite in win32 when all dependencies (esp. Twisted) are...
r2461 # Testing inputhook will need a lot of thought, to figure out
# how to have tests that don't lock up with the gui event
# loops in the picture
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 ipjoin('lib', 'inputhook'),
Fernando Perez
Fix config part of the test suite.
r2417 # Config files aren't really importable stand-alone
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 ipjoin('config', 'profile'),
Fernando Perez
Skip notebook 'static' dir in test suite....
r7801 # The notebook 'static' directory contains JS, css and other
# files for web serving. Occasionally projects may put a .py
# file in there (MathJax ships a conf.py), so we might as
# well play it safe and skip the whole thing.
MinRK
update references for IPython.html
r11035 ipjoin('html', 'static'),
ipjoin('html', 'fabfile'),
Fernando Perez
Fix config part of the test suite.
r2417 ]
MinRK
Allow IPython to run without sqlite3...
r5147 if not have['sqlite3']:
exclusions.append(ipjoin('core', 'tests', 'test_history'))
exclusions.append(ipjoin('core', 'history'))
Fernando Perez
Added diagnostics printout at the end of the test suite....
r2496 if not have['wx']:
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 exclusions.append(ipjoin('lib', 'inputhookwx'))
MinRK
skip autoreload tests
r7455
MinRK
move IPython.inprocess to IPython.kernel.inprocess
r9375 if 'IPython.kernel.inprocess' not in sys.argv:
exclusions.append(ipjoin('kernel', 'inprocess'))
MinRK
skip autoreload tests
r7455 # FIXME: temporarily disable autoreload tests, as they can produce
# spurious failures in subsequent tests (cythonmagic).
exclusions.append(ipjoin('extensions', 'autoreload'))
exclusions.append(ipjoin('extensions', 'tests', 'test_autoreload'))
Bernardo B. Marques
remove all trailling spaces
r4872
Thomas Kluyver
Tweak code with suggestions from yesterday.
r3458 # We do this unconditionally, so that the test suite doesn't import
# gtk, changing the default encoding and masking some unicode bugs.
exclusions.append(ipjoin('lib', 'inputhookgtk'))
MinRK
move IPython.inprocess to IPython.kernel.inprocess
r9375 exclusions.append(ipjoin('kernel', 'zmq', 'gui', 'gtkembed'))
Brian Granger
Updated iptest to skip inputhook*.py files for doctesting.
r2083
Jonathan Frederic
Re-enable files directory exclusion.
r11507 #Also done unconditionally, exclude nbconvert directories containing
#config files used to test. Executing the config files with iptest would
#cause an exception.
exclusions.append(ipjoin('nbconvert', 'tests', 'files'))
exclusions.append(ipjoin('nbconvert', 'exporters', 'tests', 'files'))
Jonathan Frederic
Exclude nbconvert testing config files from iptest interpretation.
r11497
Brian Granger
Refactored iptest.py to work with new package org....
r2079 # These have to be skipped on win32 because the use echo, rm, cd, etc.
Thomas Kluyver
Replace links to launchpad bugs in comments/docstrings with equivalent github links.
r3917 # See ticket https://github.com/ipython/ipython/issues/87
Brian Granger
Refactored iptest.py to work with new package org....
r2079 if sys.platform == 'win32':
Fernando Perez
Fix test suite when Twisted not available, cleanups to iptest for clarity.
r2454 exclusions.append(ipjoin('testing', 'plugin', 'test_exampleip'))
exclusions.append(ipjoin('testing', 'plugin', 'dtexample'))
Brian Granger
Refactored iptest.py to work with new package org....
r2079
Fernando Perez
Added diagnostics printout at the end of the test suite....
r2496 if not have['pexpect']:
MinRK
remove empty IPython.scripts test group
r7775 exclusions.extend([ipjoin('lib', 'irunner'),
MinRK
update iptest exclusions with recent changes
r5694 ipjoin('lib', 'tests', 'test_irunner'),
Fernando Perez
Fix imports in test suite.
r11026 ipjoin('terminal', 'console'),
MinRK
update iptest exclusions with recent changes
r5694 ])
Brian Granger
Refactored iptest.py to work with new package org....
r2079
MinRK
add zmq checking in iptest
r3640 if not have['zmq']:
MinRK
exclude IPython.lib.kernel in iptest...
r12086 exclusions.append(ipjoin('lib', 'kernel'))
MinRK
move IPython.inprocess to IPython.kernel.inprocess
r9375 exclusions.append(ipjoin('kernel'))
Fernando Perez
Fix imports in test suite.
r11026 exclusions.append(ipjoin('qt'))
exclusions.append(ipjoin('html'))
exclusions.append(ipjoin('consoleapp.py'))
exclusions.append(ipjoin('terminal', 'console'))
MinRK
rebase IPython.parallel after removal of IPython.kernel...
r3672 exclusions.append(ipjoin('parallel'))
MinRK
test for pygments before running qt tests
r6874 elif not have['qt'] or not have['pygments']:
Fernando Perez
Fix imports in test suite.
r11026 exclusions.append(ipjoin('qt'))
Bernardo B. Marques
remove all trailling spaces
r4872
MinRK
add pymongo to iptest exclusions
r3674 if not have['pymongo']:
exclusions.append(ipjoin('parallel', 'controller', 'mongodb'))
MinRK
various db backend fixes...
r3875 exclusions.append(ipjoin('parallel', 'tests', 'test_mongodb'))
MinRK
add zmq checking in iptest
r3640
Fernando Perez
Do not generate output for empty figures in Qt console....
r3731 if not have['matplotlib']:
Fernando Perez
Fix inline backend logic and avoid tests if mpl not available.
r5474 exclusions.extend([ipjoin('core', 'pylabtools'),
MinRK
include IPython.zmq in iptest groups
r6566 ipjoin('core', 'tests', 'test_pylabtools'),
MinRK
move IPython.inprocess to IPython.kernel.inprocess
r9375 ipjoin('kernel', 'zmq', 'pylab'),
MinRK
include IPython.zmq in iptest groups
r6566 ])
Fernando Perez
Do not generate output for empty figures in Qt console....
r3731
Brian Granger
More code review changes:...
r7102 if not have['cython']:
exclusions.extend([ipjoin('extensions', 'cythonmagic')])
MinRK
add missing cython exclusion in iptest
r7117 exclusions.extend([ipjoin('extensions', 'tests', 'test_cythonmagic')])
Brian Granger
More code review changes:...
r7102
Stefan van der Walt
Skip octavemagic tests if oct2py is unavailable.
r7385 if not have['oct2py']:
exclusions.extend([ipjoin('extensions', 'octavemagic')])
exclusions.extend([ipjoin('extensions', 'tests', 'test_octavemagic')])
Brian E. Granger
Check for tornado before running frontend.html tests.
r4703 if not have['tornado']:
Fernando Perez
Fix imports in test suite.
r11026 exclusions.append(ipjoin('html'))
MinRK
add nbconvert serve exclusions without tornado
r12515 exclusions.append(ipjoin('nbconvert', 'post_processors', 'serve'))
exclusions.append(ipjoin('nbconvert', 'post_processors', 'tests', 'test_serve'))
Brian E. Granger
Check for tornado before running frontend.html tests.
r4703
Bradley M. Froehle
Skip notebookapp testing if jinja2 is not available.
r8908 if not have['jinja2']:
MinRK
update references for IPython.html
r11035 exclusions.append(ipjoin('html', 'notebookapp'))
Bradley M. Froehle
Skip notebookapp testing if jinja2 is not available.
r8908
Fernando Perez
Ensure that no tests are attempted if numpy or rpy2 are not present....
r7224 if not have['rpy2'] or not have['numpy']:
exclusions.append(ipjoin('extensions', 'rmagic'))
exclusions.append(ipjoin('extensions', 'tests', 'test_rmagic'))
Brian Granger
Adding exclusion for the azure module in iptest.
r8184 if not have['azure']:
MinRK
update references for IPython.html
r11035 exclusions.append(ipjoin('html', 'services', 'notebooks', 'azurenbmanager'))
Brian Granger
Adding exclusion for the azure module in iptest.
r8184
Jonathan Frederic
nbconvert no longer depends on markdown
r11539 if not all((have['pygments'], have['jinja2'], have['sphinx'])):
Brian E. Granger
Fixing test logic for nbconvert to get tests to pass.
r11095 exclusions.append(ipjoin('nbconvert'))
Brian Granger
Refactored iptest.py to work with new package org....
r2079 # This is needed for the reg-exp to match on win32 in the ipdoctest plugin.
if sys.platform == 'win32':
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 exclusions = [s.replace('\\','\\\\') for s in exclusions]
MinRK
warn on nonexistent exclusions
r7121
# check for any exclusions that don't seem to exist:
MinRK
test for exclusions based on ipython_package_dir
r7126 parent, _ = os.path.split(get_ipython_package_dir())
MinRK
warn on nonexistent exclusions
r7121 for exclusion in exclusions:
MinRK
don't warn in iptest if deathrow/quarantine are missing
r7463 if exclusion.endswith(('deathrow', 'quarantine')):
# ignore deathrow/quarantine, which exist in dev, but not install
continue
MinRK
test for exclusions based on ipython_package_dir
r7126 fullpath = pjoin(parent, exclusion)
MinRK
use glob for bad exclusion warning...
r7412 if not os.path.exists(fullpath) and not glob.glob(fullpath + '.*'):
Thomas Kluyver
Fix IPython.utils.warn API so messages are automatically displayed followed by a newline.
r8223 warn("Excluding nonexistent file: %r" % exclusion)
Brian Granger
Refactored iptest.py to work with new package org....
r2079
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 return exclusions
Administrator
Fixing doctest EXCLUDES in iptest on win32....
r1980
Thomas Kluyver
Add test suite for autoreload extension...
r11073 special_test_suites = {
'autoreload': ['IPython.extensions.autoreload', 'IPython.extensions.tests.test_autoreload'],
}
Fernando Perez
Work in multiple places to improve state of the test suite....
r2398
Brian Granger
Refactored iptest to include the iptestall capabilities....
r1972 def run_iptest():
"""Run the IPython test suite using nose.
Bernardo B. Marques
remove all trailling spaces
r4872
Brian Granger
Refactored iptest to include the iptestall capabilities....
r1972 This function is called when this script is **not** called with the form
`iptest all`. It simply calls nose with appropriate command line flags
and accepts all of the standard nose arguments.
Fernando Perez
Add module I forgot
r1574 """
Thomas Kluyver
Make separate function to monkeypatch Xunit.
r6102 # Apply our monkeypatch to Xunit
Thomas Kluyver
Only monkeypatch xunit when the tests are run using it.
r6113 if '--with-xunit' in sys.argv and not hasattr(Xunit, 'orig_addError'):
Thomas Kluyver
Make separate function to monkeypatch Xunit.
r6102 monkeypatch_xunit()
Fernando Perez
Add module I forgot
r1574
Bernardo B. Marques
remove all trailling spaces
r4872 warnings.filterwarnings('ignore',
Fernando Perez
Add module I forgot
r1574 'This will be removed soon. Use IPython.testing.util instead')
Thomas Kluyver
Add test suite for autoreload extension...
r11073
if sys.argv[1] in special_test_suites:
sys.argv[1:2] = special_test_suites[sys.argv[1]]
special_suite = True
else:
special_suite = False
Fernando Perez
Add module I forgot
r1574
Fernando Perez
Fix tests to return consistent results regardless of how they are called....
r2487 argv = sys.argv + [ '--detailed-errors', # extra info in tracebacks
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 '--with-ipdoctest',
'--ipdoctest-tests','--ipdoctest-extension=txt',
Bernardo B. Marques
remove all trailling spaces
r4872
Fernando Perez
Fixes to testing system: ipdocetst plugin wasn't being properly loaded.
r1761 # We add --exe because of setuptools' imbecility (it
# blindly does chmod +x on ALL files). Nose does the
# right thing and it tries to avoid executables,
# setuptools unfortunately forces our hand here. This
# has been discussed on the distutils list and the
# setuptools devs refuse to fix this problem!
'--exe',
]
MinRK
skip crash tests by default
r8201 if '-a' not in argv and '-A' not in argv:
argv = argv + ['-a', '!crash']
Fernando Perez
Add module I forgot
r1574
Fernando Perez
Robustness fixes in test suite machinery....
r2494 if nose.__version__ >= '0.11':
# I don't fully understand why we need this one, but depending on what
# directory the test suite is run from, if we don't give it, 0 tests
# get run. Specifically, if the test suite is run from the source dir
# with an argument (like 'iptest.py IPython.core', 0 tests are run,
# even if the same call done in this directory works fine). It appears
# that if the requested package is in the current dir, nose bails early
# by default. Since it's otherwise harmless, leave it in by default
# for nose >= 0.11, though unfortunately nose 0.10 doesn't support it.
argv.append('--traverse-namespace')
Fernando Perez
Add module I forgot
r1574
Matthew Brett
BF - allow nose with-doctest setting in environment...
r4567 # use our plugin for doctesting. It will remove the standard doctest plugin
# if it finds it enabled
Thomas Kluyver
Add test suite for autoreload extension...
r11073 ipdt = IPythonDoctest() if special_suite else IPythonDoctest(make_exclude())
plugins = [ipdt, KnownFailure()]
Fernando Perez
Ensure that in-process test group doesn't create global IPython singleton....
r8489
# We need a global ipython running in this process, but the special
# in-process group spawns its own IPython kernels, so for *that* group we
# must avoid also opening the global one (otherwise there's a conflict of
# singletons). Ultimately the solution to this problem is to refactor our
# assumptions about what needs to be a singleton and what doesn't (app
# objects should, individual shells shouldn't). But for now, this
# workaround allows the test suite for the inprocess module to complete.
MinRK
move IPython.inprocess to IPython.kernel.inprocess
r9375 if not 'IPython.kernel.inprocess' in sys.argv:
Fernando Perez
Ensure that in-process test group doesn't create global IPython singleton....
r8489 globalipapp.start_ipython()
Fernando Perez
Massive amount of work to improve the test suite, restores doctests....
r2414 # Now nose can run
Matthew Brett
BF - allow nose with-doctest setting in environment...
r4567 TestProgram(argv=argv, addplugins=plugins)
Brian Granger
Refactored iptest to include the iptestall capabilities....
r1972
if __name__ == '__main__':
Thomas Kluyver
Split out iptestcontroller to control test process.
r12607 run_iptest()