##// END OF EJS Templates
Making the doctest exclude paths os independent.
Brian Granger -
Show More
@@ -32,6 +32,8 b' from nose.core import TestProgram'
32 32
33 33 from IPython.testing.plugin.ipdoctest import IPythonDoctest
34 34
35 pjoin = path.join
36
35 37 #-----------------------------------------------------------------------------
36 38 # Globals and constants
37 39 #-----------------------------------------------------------------------------
@@ -40,18 +42,18 b' from IPython.testing.plugin.ipdoctest import IPythonDoctest'
40 42 # testing problems. We should strive to minimize the number of skipped
41 43 # modules, since this means untested code. As the testing machinery
42 44 # solidifies, this list should eventually become empty.
43 EXCLUDE = ['IPython/external/',
44 'IPython/platutils_win32',
45 'IPython/frontend/cocoa',
46 'IPython/frontend/process/winprocess.py',
47 'IPython_doctest_plugin',
48 'IPython/Gnuplot',
49 'IPython/Extensions/ipy_',
50 'IPython/Extensions/clearcmd',
51 'IPython/Extensions/PhysicalQIn',
52 'IPython/Extensions/scitedirector',
53 'IPython/Extensions/numeric_formats',
54 'IPython/testing/attic',
45 EXCLUDE = [pjoin('IPython', 'external'),
46 pjoin('IPython', 'platutils_win32'),
47 pjoin('IPython', 'frontend', 'cocoa'),
48 pjoin('IPython', 'frontend', 'process', 'winprocess.py'),
49 pjoin('IPython_doctest_plugin'),
50 pjoin('IPython', 'Gnuplot'),
51 pjoin('IPython', 'Extensions', 'ipy_'),
52 pjoin('IPython', 'Extensions', 'clearcmd'),
53 pjoin('IPython', 'Extensions', 'PhysicalQIn'),
54 pjoin('IPython', 'Extensions', 'scitedirector'),
55 pjoin('IPython', 'Extensions', 'numeric_formats'),
56 pjoin('IPython', 'testing', 'attic'),
55 57 ]
56 58
57 59 #-----------------------------------------------------------------------------
General Comments 0
You need to be logged in to leave comments. Login now