(label: str, script: Path, *args: str)
| 138 | |
| 139 | |
| 140 | def run_python_step_quiet(label: str, script: Path, *args: str) -> None: |
| 141 | if not script.is_file(): |
| 142 | return |
| 143 | print(f"{label}...") |
| 144 | result = run([sys.executable, str(script), *args], stdout=subprocess.DEVNULL) |
| 145 | if result.returncode != 0: |
| 146 | print(f"{script.name} found issues") |
| 147 | |
| 148 | |
| 149 | def main() -> int: |