(self)
| 964 | return resolved_ids |
| 965 | |
| 966 | def _strict_parametrization_ids_enabled(self) -> bool: |
| 967 | if self.config is None: |
| 968 | return False |
| 969 | strict_parametrization_ids = self.config.getini(class="st">"strict_parametrization_ids") |
| 970 | if strict_parametrization_ids is None: |
| 971 | strict_parametrization_ids = self.config.getini(class="st">"strict") |
| 972 | return cast(bool, strict_parametrization_ids) |
| 973 | |
| 974 | def _resolve_ids(self) -> Iterable[str | _HiddenParam]: |
| 975 | class="st">""class="st">"Resolve IDs for all ParameterSets (may contain duplicates)."class="st">"" |
no test coverage detected