From 833798f6500414e24ca94d882f86dd41b091bbb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 14 Apr 2025 14:44:00 +0200 Subject: [PATCH] test_vars_deployment: skip on macOS for now we can not run vms on macOS at the moment. --- pkgs/clan-cli/clan_cli/tests/test_vars_deployment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/clan-cli/clan_cli/tests/test_vars_deployment.py b/pkgs/clan-cli/clan_cli/tests/test_vars_deployment.py index ef846a549..576f952af 100644 --- a/pkgs/clan-cli/clan_cli/tests/test_vars_deployment.py +++ b/pkgs/clan-cli/clan_cli/tests/test_vars_deployment.py @@ -1,5 +1,6 @@ import json import subprocess +import sys from contextlib import ExitStack import pytest @@ -15,6 +16,7 @@ from clan_cli.vms.run import inspect_vm, spawn_vm @pytest.mark.impure +@pytest.mark.skipif(sys.platform == "darwin", reason="preload doesn't work on darwin") def test_vm_deployment( flake: ClanFlake, nix_config: dict[str, ConfigItem],