Check if auto-download is disabled via environment variable.
()
| 107 | |
| 108 | |
| 109 | def _should_skip_download() -> bool: |
| 110 | """Check if auto-download is disabled via environment variable.""" |
| 111 | val = os.environ.get("COPILOT_SKIP_CLI_DOWNLOAD", "").lower() |
| 112 | return val in ("1", "true", "yes") |
| 113 | |
| 114 | |
| 115 | def _fetch_checksums(version: str) -> dict[str, str]: |
no test coverage detected
searching dependent graphs…