Can we catch these arguments using kwargs?
@pytest.parameterize("arg1, arg2", [(1, 2), (3,4)])
def test_function(**kwargs):
...
Can we catch these arguments using kwargs?
@pytest.parameterize("arg1, arg2", [(1, 2), (3,4)])
def test_function(**kwargs):
...