##// END OF EJS Templates
First implementation of cell magics that goes via inputsplitter....
First implementation of cell magics that goes via inputsplitter. The code is still ugly and probably somewhat fragile, but the basic idea is there. I need to clean things up and test in the qt console and terminal, where things aren't probably quite right yet.

File last commit:

r1334:049617d6
r6976:1a856e1b
Show More
iptest.py
18 lines | 474 B | text/x-python | PythonLexer
#!/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()])