From 2f6da59aa8ce0f54ec160d90e8d38e8136612e37 2019-02-08 17:32:49 From: Partha P. Mukherjee Date: 2019-02-08 17:32:49 Subject: [PATCH] Skip writefile tests for quotes in filenames on Windows as quotes are not supported on Windows --- diff --git a/IPython/core/tests/test_magic.py b/IPython/core/tests/test_magic.py index 912eccb..7914d48 100644 --- a/IPython/core/tests/test_magic.py +++ b/IPython/core/tests/test_magic.py @@ -769,6 +769,7 @@ def test_file(): nt.assert_in('line1\n', s) nt.assert_in('line2', s) +@dec.skip_win32 def test_file_single_quote(): """Basic %%writefile with embedded single quotes""" ip = get_ipython() @@ -783,6 +784,7 @@ def test_file_single_quote(): nt.assert_in('line1\n', s) nt.assert_in('line2', s) +@dec.skip_win32 def test_file_double_quote(): """Basic %%writefile with embedded double quotes""" ip = get_ipython()