##// END OF EJS Templates
Merge pull request #2034 from minrk/recarray...
Merge pull request #2034 from minrk/recarray fix&test push/pull recarrays: We were only pushing the dtype str for some reason, which is totally wrong for recarrays. closes #2033

File last commit:

r1334:049617d6
r7702:feac4025 merge
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()])