Lucas Connors
Results
21
comments of
Lucas Connors
This feature would be nice, but in the meantime I am using `itertools.product()`, so your example above would look something like: ```python import itertools ... @parameterized.expand(itertools.product([True, False], [0, 1], repeat=1))...