don't expose all clan-depenencies as their own check attributes

this is expensive in CI to display.
This commit is contained in:
Jörg Thalheim
2025-04-09 08:54:21 +00:00
parent 326633d1b8
commit d03971e583

View File

@@ -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"