You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The --parameterize option currently is unable to work with variables of type typ.List[str]. The inner , for the List will be treated as a , for the parameterize option.
The text was updated successfully, but these errors were encountered:
One way that we're going to get around this is by creating sublists that are separated by something that isn't a , (e.g., a |) and then the test will then have split/replace that to make it a proper list in the test. So it would look something like -P nodes=node1|node2|node3,node4|node5|node6,node7 But being able to use a list of lists would be so much nicer.
The
--parameterize
option currently is unable to work with variables of typetyp.List[str]
. The inner,
for the List will be treated as a,
for the parameterize option.The text was updated successfully, but these errors were encountered: