(path_str: str, workspace_dir: str = "")
| 44 | |
| 45 | |
| 46 | def _resolve_path(path_str: str, workspace_dir: str = "") -> Path: |
| 47 | path = Path(path_str) |
| 48 | if not path.is_absolute(): |
| 49 | base = Path(workspace_dir) if workspace_dir else Path.cwd() |
| 50 | path = base / path |
| 51 | return path |
| 52 | |
| 53 | |
| 54 | def _chromium_executable() -> str: |
no outgoing calls
no test coverage detected