Skip to content

Commit

Permalink
another skip test
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Jan 19, 2024
1 parent 2572d85 commit a65b2aa
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions IPython/core/tests/test_interactiveshell.py
Expand Up @@ -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()
Expand Down

0 comments on commit a65b2aa

Please sign in to comment.