##// END OF EJS Templates
Merge pull request #3338 from takluyver/i3316...
Merge pull request #3338 from takluyver/i3316 closes #3316 According to [documentation here](http://docs.activestate.com/activepython/2.4/pywin32/win32api__SearchPath_meth.html), SearchPath takes an optional third parameter for the extension, which is only added if the filename doesn't have an extension.

File last commit:

r1334:049617d6
r11351:84e8bb08 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()])