param_list = [
pytest.param("product_1_1", marks=pytest.mark.conf('product_list_1')),
pytest.param("product_1_2", marks=pytest.mark.conf('product_list_1')),
pytest.param("product_1_3", marks=pytest.mark.conf('product_list_1')),
pytest.param("product_2_1", marks=pytest.mark.conf('product_list_2')),
pytest.param("product_2_1", marks=pytest.mark.conf('product_list_2')),
pytest.param("product_2_1", marks=pytest.mark.conf('product_list_2')),
]
@pytest.mark.parametrize("list_params", param_list)
def test_example_rr(self, list_params):
pass