This commit is contained in:
Qubasa
2023-10-18 18:29:51 +02:00
parent 6d0deefa6b
commit 9c8829c32f
16 changed files with 53 additions and 60 deletions

View File

@@ -1,5 +1,4 @@
import argparse
import inspect
import logging
import shlex
@@ -9,7 +8,6 @@ from clan_cli.custom_logger import get_caller
log = logging.getLogger(__name__)
class Cli:
def __init__(self) -> None:
self.parser = create_parser(prog="clan")

View File

@@ -89,7 +89,7 @@ def generic_create_vm_test(api: TestClient, flake: Path, vm: str) -> None:
assert (
data["status"] == "FINISHED"
), f"Expected to be finished, but got {data['status']} ({data})"
@pytest.mark.skipif(not os.path.exists("/dev/kvm"), reason="Requires KVM")
@pytest.mark.impure