(**kwargs: str)
| 31 | |
| 32 | @contextmanager |
| 33 | def _environ(**kwargs: str) -> Iterator[None]: |
| 34 | original = dict(os.environ) |
| 35 | os.environ.update(kwargs) |
| 36 | try: |
| 37 | yield |
| 38 | finally: |
| 39 | os.environ.clear() |
| 40 | os.environ.update(original) |
| 41 | |
| 42 | |
| 43 | def _uv_install(venv: Path) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…