PyTest - Parametrize
What will be the output when running this pytest code?
import pytest
@pytest.mark.parametrize('num', [1, 2, 3])
def test_is_positive(num):
assert num > 0