##// END OF EJS Templates
IPython.core.tests.test_run.test_obj_del apparently no longer fails on Windows, so we don't need to skip it....
Thomas Kluyver -
Show More
@@ -154,11 +154,6 b' class TestMagicRunSimple(tt.TempFileMixin):'
154 _ip.run_cell('t = isinstance(f(), foo)')
154 _ip.run_cell('t = isinstance(f(), foo)')
155 nt.assert_true(_ip.user_ns['t'])
155 nt.assert_true(_ip.user_ns['t'])
156
156
157 # We have to skip these in win32 because getoutputerr() crashes,
158 # due to the fact that subprocess does not support close_fds when
159 # redirecting stdout/err. So unless someone who knows more tells us how to
160 # implement getoutputerr() in win32, we're stuck avoiding these.
161 @dec.skip_win32
162 def test_obj_del(self):
157 def test_obj_del(self):
163 """Test that object's __del__ methods are called on exit."""
158 """Test that object's __del__ methods are called on exit."""
164
159
General Comments 0
You need to be logged in to leave comments. Login now