mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
Merge pull request #325125 from Ma27/nc-notify-push-tests
nextcloud-notify_push: filterAttrs for passthru.tests
This commit is contained in:
commit
acb327e5e0
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user