()
| 200 | |
| 201 | |
| 202 | def get_operator_version() -> str: |
| 203 | with open(MZ_ROOT / "misc" / "helm-charts" / "operator" / "Chart.yaml") as f: |
| 204 | content = yaml.load(f, Loader=yaml.Loader) |
| 205 | return content["version"] |
| 206 | |
| 207 | |
| 208 | def build_mz_debug_async(env: dict[str, str] | None = None) -> threading.Thread: |
no test coverage detected