Outcome of marker-based reconfigure detection.
| 69 | |
| 70 | @dataclass |
| 71 | class ReconfigureDecision: |
| 72 | """Outcome of marker-based reconfigure detection.""" |
| 73 | |
| 74 | reasons: list[str] = field(default_factory=list) |
| 75 | force_reconfigure: bool = False |
| 76 | force_reason: Optional[str] = None |
| 77 | debug_changed: bool = False |
| 78 | build_mode_changed: bool = False |
| 79 | last_build_mode: Optional[str] = None |
| 80 | |
| 81 | |
| 82 | @dataclass |
no outgoing calls
no test coverage detected