import pytest @pytest.mark.parametrize("x,y", [(1, 2), (3, 4)]) def test_add(x, y): assert x + y > 0