From d03971e58383eea14dc2fe4cd8c80885a07d4b43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 9 Apr 2025 08:54:21 +0000 Subject: [PATCH] don't expose all clan-depenencies as their own check attributes this is expensive in CI to display. --- pkgs/clan-cli/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/clan-cli/default.nix b/pkgs/clan-cli/default.nix index d58a0cce5..bf6ae1af8 100644 --- a/pkgs/clan-cli/default.nix +++ b/pkgs/clan-cli/default.nix @@ -126,8 +126,11 @@ pythonRuntime.pkgs.buildPythonApplication { # Define and expose the tests and checks to run in CI passthru.tests = - (lib.mapAttrs' (n: lib.nameValuePair "clan-dep-${n}") testRuntimeDependenciesMap) - // { + { + clan-deps = pkgs.runCommand "clan-deps" { } '' + # ${builtins.toString (builtins.attrValues testRuntimeDependenciesMap)} + touch $out + ''; # disabled on macOS until we fix all remaining issues clan-pytest-without-core = runCommand "clan-pytest-without-core"