(
argnames: Union[str, List[str], Tuple[str, ...]],
argvalues: Iterable[Union["ParameterSet", Sequence[object], object]],
*args,
**kwargs,
)
| 131 | |
| 132 | @staticmethod |
| 133 | def _parse_parametrize_args( |
| 134 | argnames: Union[str, List[str], Tuple[str, ...]], |
| 135 | argvalues: Iterable[Union["ParameterSet", Sequence[object], object]], |
| 136 | *args, |
| 137 | **kwargs, |
| 138 | ) -> Tuple[Union[List[str], Tuple[str, ...]], bool]: |
| 139 | if not isinstance(argnames, (tuple, list)): |
| 140 | argnames = [x.strip() for x in argnames.split(",") if x.strip()] |
| 141 | force_tuple = len(argnames) == 1 |
| 142 | else: |
| 143 | force_tuple = False |
| 144 | return argnames, force_tuple |
| 145 | |
| 146 | @staticmethod |
| 147 | def _parse_parametrize_parameters( |
no test coverage detected