(
temp_root_directory: tempfile.TemporaryDirectory,
)
| 33 | |
| 34 | |
| 35 | def get_temporary_paths( |
| 36 | temp_root_directory: tempfile.TemporaryDirectory, |
| 37 | ) -> Tuple[pathlib.Path, pathlib.Path]: |
| 38 | temp_root_path = pathlib.Path(temp_root_directory.name) |
| 39 | repository_path = temp_root_path / "repository" |
| 40 | venv_path = temp_root_path / "venv" |
| 41 | return (repository_path, venv_path) |
| 42 | |
| 43 | |
| 44 | @dataclass |
no outgoing calls
no test coverage detected