##// END OF EJS Templates
Merge PR #847 (connection files)...
Merge PR #847 (connection files) * JSON connection files are now used to connect files * HMAC message signing is now on by default in all IPython apps * Adds IPython.lib.kernel, which contains utility functions for connecting clients. These were mostly copied out of qtconsoleapp in order to be more general. * Adds %connection_info and %qtconsole magics to zmqshell closes gh-688 closes gh-806 closes gh-691

File last commit:

r1334:049617d6
r4974:f93a8ca2 merge
Show More
iptest.py
18 lines | 474 B | text/x-python | PythonLexer
Fernando Perez
Added Nose support for IPython doctests and extension modules.
r1334 #!/usr/bin/env python
"""Nose-based test runner.
"""
from nose.core import main
from nose.plugins.builtin import plugins
from nose.plugins.doctests import Doctest
import ipdoctest
from ipdoctest import IPDocTestRunner
if __name__ == '__main__':
print 'WARNING: this code is incomplete!'
print
pp = [x() for x in plugins] # activate all builtin plugins first
main(testRunner=IPDocTestRunner(),
plugins=pp+[ipdoctest.IPythonDoctest(),Doctest()])