Bagaimana menguji bahwa pengecualian adalah Raise menggunakan Pytest
# content of test_sysexit.py
import pytest
def f():
raise SystemExit(1)
def test_mytest():
with pytest.raises(SystemExit):
f()
Anies