Show More
@@ -0,0 +1,53 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | # -*- coding: utf-8 -*- | |
|
3 | """IPython Test Suite Runner. | |
|
4 | """ | |
|
5 | ||
|
6 | import sys | |
|
7 | import warnings | |
|
8 | ||
|
9 | from nose.core import TestProgram | |
|
10 | import nose.plugins.builtin | |
|
11 | ||
|
12 | from IPython.testing.plugin.ipdoctest import IPythonDoctest | |
|
13 | ||
|
14 | def main(): | |
|
15 | """Run the IPython test suite. | |
|
16 | """ | |
|
17 | ||
|
18 | warnings.filterwarnings('ignore', | |
|
19 | 'This will be removed soon. Use IPython.testing.util instead') | |
|
20 | ||
|
21 | ||
|
22 | # construct list of plugins, omitting the existing doctest plugin | |
|
23 | plugins = [IPythonDoctest()] | |
|
24 | for p in nose.plugins.builtin.plugins: | |
|
25 | plug = p() | |
|
26 | if plug.name == 'doctest': | |
|
27 | continue | |
|
28 | ||
|
29 | #print 'adding plugin:',plug.name # dbg | |
|
30 | plugins.append(plug) | |
|
31 | ||
|
32 | argv = sys.argv + ['--doctest-tests','--doctest-extension=txt', | |
|
33 | '--detailed-errors', | |
|
34 | ||
|
35 | # We add --exe because of setuptools' imbecility (it | |
|
36 | # blindly does chmod +x on ALL files). Nose does the | |
|
37 | # right thing and it tries to avoid executables, | |
|
38 | # setuptools unfortunately forces our hand here. This | |
|
39 | # has been discussed on the distutils list and the | |
|
40 | # setuptools devs refuse to fix this problem! | |
|
41 | '--exe', | |
|
42 | ] | |
|
43 | ||
|
44 | has_ip = False | |
|
45 | for arg in sys.argv: | |
|
46 | if 'IPython' in arg: | |
|
47 | has_ip = True | |
|
48 | break | |
|
49 | ||
|
50 | if not has_ip: | |
|
51 | argv.append('IPython') | |
|
52 | ||
|
53 | TestProgram(argv=argv,plugins=plugins) |
General Comments 0
You need to be logged in to leave comments.
Login now