PyTest - Basics and Setup
What will be the output when running this pytest code?
def test_sum():
assert sum([1, 2, 3]) == 6
def test_fail():
assert 2 + 2 == 5