##// END OF EJS Templates
Fix another win32 test failure....
Fernando Perez -
Show More
@@ -21,6 +21,7 b' from IPython.core.component import Component, masquerade_as'
21 from IPython.core.iplib import InteractiveShell
21 from IPython.core.iplib import InteractiveShell
22 from IPython.extensions import pretty as pretty_ext
22 from IPython.extensions import pretty as pretty_ext
23 from IPython.external import pretty
23 from IPython.external import pretty
24 from IPython.testing import decorators as dec
24 from IPython.testing import tools as tt
25 from IPython.testing import tools as tt
25 from IPython.utils.traitlets import Bool
26 from IPython.utils.traitlets import Bool
26
27
@@ -28,7 +29,6 b' from IPython.utils.traitlets import Bool'
28 # Tests
29 # Tests
29 #-----------------------------------------------------------------------------
30 #-----------------------------------------------------------------------------
30
31
31
32 class InteractiveShellStub(Component):
32 class InteractiveShellStub(Component):
33 pprint = Bool(True)
33 pprint = Bool(True)
34
34
@@ -92,6 +92,10 b' B()'
92 """
92 """
93
93
94 class TestPrettyInteractively(tt.TempFileMixin):
94 class TestPrettyInteractively(tt.TempFileMixin):
95
96 # XXX Unfortunately, ipexec_validate fails under win32. If someone helps
97 # us write a win32-compatible version, we can reactivate this test.
98 @dec.skip_win32
95 def test_printers(self):
99 def test_printers(self):
96 self.mktmp(ipy_src, '.ipy')
100 self.mktmp(ipy_src, '.ipy')
97 tt.ipexec_validate(self.fname, ipy_out)
101 tt.ipexec_validate(self.fname, ipy_out)
General Comments 0
You need to be logged in to leave comments. Login now