Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemanspiff2007 committed Nov 13, 2024
1 parent ba5181f commit a05ab62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_core/test_lib/test_format_traceback.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,9 @@ def test_exception_expression_remove_py310() -> None:
ZeroDivisionError: division by zero'''


@pytest.mark.skipif(PYTHON_313, reason='New traceback from python 3.11 and 3.12')
@pytest.mark.skipif(
PYTHON_313 or (not PYTHON_311 and not PYTHON_312 and not PYTHON_313),
reason='New traceback from python 3.11 and 3.12')
def test_exception_expression_remove_py_311_312() -> None:
log.setLevel(logging.WARNING)
msg = exec_func(func_test_assert_none)
Expand Down

0 comments on commit a05ab62

Please sign in to comment.