nixos/postgresql: remove postgresql_11-backup-all test

I don't really understand why this is only for a single version, so I
figured I'd just add this to the test matrix to also cover this
test-case for each major. Now, there's also one thing less to take care of
when removing old postgresql versions.
This commit is contained in:
Maximilian Bosch 2023-10-30 15:09:34 +01:00
parent 945cdad4ee
commit 279cecf6b7
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

@ -219,8 +219,6 @@ let
in
concatMapAttrs (name: package: {
${name} = make-postgresql-test name package false;
${name + "-backup-all"} = make-postgresql-test "${name + "-backup-all"}" package true;
${name + "-clauses"} = mk-ensure-clauses-test name package;
}) postgresql-versions
// {
postgresql_11-backup-all = make-postgresql-test "postgresql_11-backup-all" postgresql-versions.postgresql_11 true;
}