Merge pull request #325125 from Ma27/nc-notify-push-tests

nextcloud-notify_push: filterAttrs for passthru.tests
This commit is contained in:
Maximilian Bosch 2024-07-07 13:34:06 +00:00 committed by GitHub
commit acb327e5e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,12 +30,13 @@ rustPlatform.buildRustPackage rec {
mainProgram = "test_client";
};
};
tests = {
inherit (nixosTests.nextcloud)
with-postgresql-and-redis28
with-postgresql-and-redis29;
inherit test_client;
};
tests =
lib.filterAttrs
(key: lib.const (lib.hasPrefix "with-postgresql-and-redis" key))
nixosTests.nextcloud
// {
inherit test_client;
};
};
meta = with lib; {