##// END OF EJS Templates
fix skip_doctest import in testing.tools
MinRK -
Show More
@@ -47,6 +47,7 b' from IPython.utils.text import list_strings'
47 47 from IPython.utils.io import temp_pyfile
48 48
49 49 from . import decorators as dec
50 from . import skipdoctest
50 51
51 52 #-----------------------------------------------------------------------------
52 53 # Globals
@@ -70,7 +71,7 b' if has_nose:'
70 71
71 72 # The docstring for full_path doctests differently on win32 (different path
72 73 # separator) so just skip the doctest there. The example remains informative.
73 doctest_deco = dec.skip_doctest if sys.platform == 'win32' else dec.null_deco
74 doctest_deco = skipdoctest.skip_doctest if sys.platform == 'win32' else dec.null_deco
74 75
75 76 @doctest_deco
76 77 def full_path(startPath,files):
General Comments 0
You need to be logged in to leave comments. Login now