clan_cli: ClanURI fixed non executing tests

This commit is contained in:
Qubasa
2023-12-06 13:38:22 +01:00
parent 9fa88b1599
commit 010e0bd3f9
3 changed files with 31 additions and 33 deletions

View File

@@ -68,9 +68,11 @@ class VMBase:
vm = asyncio.run(
vms.run.inspect_vm(flake_url=self._path, flake_attr="defaultVM")
)
task = vms.run.run_vm(vm)
for line in task.log_lines():
print(line, end="")
vms.run.run_vm(vm)
# for line in task.log_lines():
# print(line, end="")
@dataclass(frozen=True)