File tree 1 file changed +23
-0
lines changed 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -1397,6 +1397,29 @@ def test(tmp_path):
1397
1397
result .stderr .no_fnmatch_line ("*INTERNALERROR*" )
1398
1398
1399
1399
1400
+ def test_regression_nagative_line_index (pytester : Pytester ) -> None :
1401
+ """
1402
+ With Python 3.10 alphas, there was an INTERNALERROR reported in
1403
+ https://github.com/pytest-dev/pytest/pull/8227
1404
+ This test ensures it does not regress.
1405
+ """
1406
+ pytester .makepyfile (
1407
+ """
1408
+ import ast
1409
+ import pytest
1410
+
1411
+
1412
+ def test_literal_eval():
1413
+ with pytest.raises(ValueError, match="^$"):
1414
+ ast.literal_eval("pytest")
1415
+ """
1416
+ )
1417
+ result = pytester .runpytest ()
1418
+ result .stdout .fnmatch_lines (["* 1 failed in *" ])
1419
+ result .stdout .no_fnmatch_line ("*INTERNALERROR*" )
1420
+ result .stderr .no_fnmatch_line ("*INTERNALERROR*" )
1421
+
1422
+
1400
1423
@pytest .mark .usefixtures ("limited_recursion_depth" )
1401
1424
def test_exception_repr_extraction_error_on_recursion ():
1402
1425
"""
You can’t perform that action at this time.
0 commit comments