From a65b2aa094a5690ac88bcbe7f28ea27dd174ac29 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Fri, 19 Jan 2024 11:34:12 +0100 Subject: [PATCH] another skip test --- IPython/core/tests/test_interactiveshell.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/IPython/core/tests/test_interactiveshell.py b/IPython/core/tests/test_interactiveshell.py index 614c5375bfa..378a3cd9272 100644 --- a/IPython/core/tests/test_interactiveshell.py +++ b/IPython/core/tests/test_interactiveshell.py @@ -577,13 +577,12 @@ def test_reset_aliasing(self): self.assertEqual(res.success, True) +@pytest.mark.skipif( + sys.implementation.name == "pypy" + and ((7, 3, 13) < sys.implementation.version < (7, 3, 16)), + reason="Unicode issues with scandir on PyPy, see https://github.com/pypy/pypy/issues/4860", +) class TestSafeExecfileNonAsciiPath(unittest.TestCase): - - @pytest.mark.skipif( - sys.implementation.name == "pypy" - and ((7, 3, 13) < sys.implementation.version < (7, 3, 16)), - reason="Unicode issues with scandir on PyPy, see https://github.com/pypy/pypy/issues/4860", - ) @onlyif_unicode_paths def setUp(self): self.BASETESTDIR = tempfile.mkdtemp()