Get unique container name based on project path. Args: project_root: Path to the project root Returns: Container name in format: fastled-unit-tests-{hash}
(project_root: Path)
| 57 | |
| 58 | |
| 59 | def _get_container_name(project_root: Path) -> str: |
| 60 | """Get unique container name based on project path. |
| 61 | |
| 62 | Args: |
| 63 | project_root: Path to the project root |
| 64 | |
| 65 | Returns: |
| 66 | Container name in format: fastled-unit-tests-{hash} |
| 67 | """ |
| 68 | path_hash = _get_path_hash(project_root) |
| 69 | return f"fastled-unit-tests-{path_hash}" |
| 70 | |
| 71 | |
| 72 | def _get_volume_names(project_root: Path) -> VolumeNames: |
no test coverage detected