From 22a3c9a1dd05d752cede04fbd11f320a51772921 2011-05-29 21:26:31 From: Thomas Kluyver Date: 2011-05-29 21:26:31 Subject: [PATCH] IPython.core.tests.test_run.test_obj_del apparently no longer fails on Windows, so we don't need to skip it. Closes gh-59 --- diff --git a/IPython/core/tests/test_run.py b/IPython/core/tests/test_run.py index 4004979..c3f0510 100644 --- a/IPython/core/tests/test_run.py +++ b/IPython/core/tests/test_run.py @@ -154,11 +154,6 @@ class TestMagicRunSimple(tt.TempFileMixin): _ip.run_cell('t = isinstance(f(), foo)') nt.assert_true(_ip.user_ns['t']) - # We have to skip these in win32 because getoutputerr() crashes, - # due to the fact that subprocess does not support close_fds when - # redirecting stdout/err. So unless someone who knows more tells us how to - # implement getoutputerr() in win32, we're stuck avoiding these. - @dec.skip_win32 def test_obj_del(self): """Test that object's __del__ methods are called on exit."""