##// END OF EJS Templates
warnings for empty cells with %%sx, %%system, or %%!...
warnings for empty cells with %%sx, %%system, or %%! Warns the user if they run a %%sx derivative with an empty cell - issue #2862. This is not perfect since, from within sx, there's no way to to tell which of sx/system/! were issued and we have to be generic.

File last commit:

r1334:049617d6
r9464:d7cc7f1e
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()])