only pytest in deps
sudo apt install python3 python3-venv
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
pytest
@pytest.mark.parametrize("test_input, expected", [
("Bob", "Hello, Bob.")
])
def test(test_input, expected):
pass
def test_zero_division_exception():
with pytest.raises(ZeroDivisionError):
1 / 0