PyTest - Parametrize
What is wrong with this pytest parametrize usage?
@pytest.mark.parametrize('x,y', [(1, 2), (3, 4)], ids=['first'])
def test_add(x, y):
assert x + y > 0