()
| 158 | |
| 159 | |
| 160 | def build_uv_run_command() -> list[str]: |
| 161 | command = ["uv", "run"] |
| 162 | for extra in split_words(os.environ.get("EXAMPLES_UV_EXTRAS", "")): |
| 163 | command.extend(["--extra", extra]) |
| 164 | return command |
| 165 | |
| 166 | |
| 167 | def dedupe_existing_paths(paths: Iterable[str]) -> list[str]: |
no test coverage detected