arg ends up being the tuple instead of the first item in the tuple (as I would expected based on tuples with more than one item. I also tried: @pytest.mark.parametrize("arg,", scenarios) but that also associated the entire tuple with arg instead of the first element. I reverted bac...