Return path to the ninja skip state cache file.
(build_dir: Path)
| 147 | |
| 148 | |
| 149 | def _get_ninja_skip_state_file(build_dir: Path) -> Path: |
| 150 | """Return path to the ninja skip state cache file.""" |
| 151 | return build_dir / ".ninja_skip_state.json" |
| 152 | |
| 153 | |
| 154 | def check_ninja_skip(build_dir: Path, target: str) -> bool: |
no outgoing calls
no test coverage detected