##// END OF EJS Templates
xfail pypy
Matthias Bussonnier -
Show More
@@ -292,6 +292,7 b' def test_check_complete_param(code, expected, number):'
292 assert cc(code) == (expected, number)
292 assert cc(code) == (expected, number)
293
293
294
294
295 @pytest.mark.xfail(platform.python_implementation() == "PyPy", reason="fail on pypy")
295 @pytest.mark.xfail(
296 @pytest.mark.xfail(
296 reason="Bug in python 3.9.8 – bpo 45738",
297 reason="Bug in python 3.9.8 – bpo 45738",
297 condition=sys.version_info in [(3, 9, 8, "final", 0), (3, 11, 0, "alpha", 2)],
298 condition=sys.version_info in [(3, 9, 8, "final", 0), (3, 11, 0, "alpha", 2)],
@@ -320,7 +321,7 b' def test_check_complete():'
320 assert cc("def f():\n x=0\n \\\n ") == ("incomplete", 2)
321 assert cc("def f():\n x=0\n \\\n ") == ("incomplete", 2)
321
322
322
323
323 @pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="fail on pypy")
324 @pytest.mark.xfail(platform.python_implementation() == "PyPy", reason="fail on pypy")
324 @pytest.mark.parametrize(
325 @pytest.mark.parametrize(
325 "value, expected",
326 "value, expected",
326 [
327 [
General Comments 0
You need to be logged in to leave comments. Login now