nextcloud*: only test corresponding version

This commit is contained in:
Robert Schütz 2024-09-18 15:50:32 -07:00
parent de24beec33
commit b9ba772e16

View File

@ -18,7 +18,9 @@ let
};
passthru = {
tests = nixosTests.nextcloud;
tests = lib.filterAttrs (
key: _: (lib.hasSuffix (lib.versions.major version) key)
) nixosTests.nextcloud;
inherit packages;
};