From 981cedc098d65b2d8f1e0ecea550c43ebe93f087 Mon Sep 17 00:00:00 2001 From: happysalada Date: Sun, 4 Aug 2024 20:57:46 -0400 Subject: [PATCH] pixi: fix darwin build disable failing tests for darwin --- pkgs/by-name/pi/pixi/package.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/by-name/pi/pixi/package.nix b/pkgs/by-name/pi/pixi/package.nix index e6b4c5578392..b3f92a51507a 100644 --- a/pkgs/by-name/pi/pixi/package.nix +++ b/pkgs/by-name/pi/pixi/package.nix @@ -78,6 +78,12 @@ rustPlatform.buildRustPackage rec { "--skip=test_task_with_env" "--skip=test_pixi_only_env_activation" "--skip=cli::shell_hook::tests::test_environment_json" + ] ++ lib.optionals stdenv.isDarwin [ + "--skip=task::task_environment::tests::test_find_ambiguous_task" + "--skip=task::task_environment::tests::test_find_task_dual_defined" + "--skip=task::task_environment::tests::test_find_task_explicit_defined" + "--skip=task::task_graph::test::test_custom_command" + "--skip=task::task_graph::test::test_multi_env_defaults_ambigu" ]; postInstall = ''