Comment tester cette exception a été soulevée en utilisant PyTest
# content of test_sysexit.py
import pytest
def f():
raise SystemExit(1)
def test_mytest():
with pytest.raises(SystemExit):
f()
Anies