(self, step: dict[str, Any])
| 133 | return step.get("auth_override") or self.scenario.get("auth_override") |
| 134 | |
| 135 | def has_auth_override(self, step: dict[str, Any]) -> bool: |
| 136 | return self.auth_override(step) is not None |
| 137 | |
| 138 | def execute_setup(self) -> bool: |
| 139 | """Returns True if scenario should be skipped (needs store access).""" |
no test coverage detected