(params: dict[Any, str], **kwargs)
| 228 | |
| 229 | |
| 230 | def dict_params(params: dict[Any, str], **kwargs): |
| 231 | for value, param_id in params.items(): |
| 232 | yield pytest.param(value, **kwargs, id=param_id) |
| 233 | |
| 234 | |
| 235 | def import_case_data(data_path: Path, calculation_type: str, sym: bool): |