##// END OF EJS Templates
Fixing tests in IPython.testing.
Brian Granger -
Show More
@@ -70,7 +70,8 b" EXCLUDE = [pjoin('IPython', 'external'),"
70 70 pjoin('IPython', 'Extensions', 'scitedirector'),
71 71 pjoin('IPython', 'Extensions', 'numeric_formats'),
72 72 pjoin('IPython', 'testing', 'attic'),
73 pjoin('IPython', 'testing', 'tutils')
73 pjoin('IPython', 'testing', 'tutils'),
74 pjoin('IPython', 'testing', 'tools')
74 75 ]
75 76
76 77 if not have_wx:
@@ -26,15 +26,13 b' Authors'
26 26 # Required modules and packages
27 27 #-----------------------------------------------------------------------------
28 28
29 # Standard Python lib
30 29 import os
31 30 import sys
32 31
33 # Third-party
34 32 import nose.tools as nt
35 33
36 # From this project
37 34 from IPython.tools import utils
35 from IPython.testing import decorators as dec
38 36
39 37 #-----------------------------------------------------------------------------
40 38 # Globals
@@ -55,6 +53,7 b" for _x in [a for a in dir(nt) if a.startswith('assert')]:"
55 53 # Functions and classes
56 54 #-----------------------------------------------------------------------------
57 55
56
58 57 def full_path(startPath,files):
59 58 """Make full paths for all the listed files, based on startPath.
60 59
General Comments 0
You need to be logged in to leave comments. Login now