I need to run only once parametrized test in pytest, for example I've got a dynamic list with test data and want to run test with test_data[0] parameters in case user send some condition for this, like mark
test_data = list()
test_data = create_test_data() #dynamic list depends on user conditions
@pytest.mark.parametrize("params", test_data)
def test_b(params):
...