summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2023-10-30 15:09:34 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2023-10-30 15:11:06 +0100
commit279cecf6b748294be69fa1f38627f146252afb9e (patch)
treef323f98b220ceadff9011f9d10b7c9c054b4a9c4 /nixos/tests
parent945cdad4ee2fd3987c7214c2cbaf8483e1c94a02 (diff)
downloadnixpkgs-279cecf6b748294be69fa1f38627f146252afb9e.tar
nixpkgs-279cecf6b748294be69fa1f38627f146252afb9e.tar.gz
nixpkgs-279cecf6b748294be69fa1f38627f146252afb9e.tar.bz2
nixpkgs-279cecf6b748294be69fa1f38627f146252afb9e.tar.lz
nixpkgs-279cecf6b748294be69fa1f38627f146252afb9e.tar.xz
nixpkgs-279cecf6b748294be69fa1f38627f146252afb9e.tar.zst
nixpkgs-279cecf6b748294be69fa1f38627f146252afb9e.zip
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.
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/postgresql.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/tests/postgresql.nix b/nixos/tests/postgresql.nix
index b44849e0a14..c0dd24cf6ad 100644
--- a/nixos/tests/postgresql.nix
+++ b/nixos/tests/postgresql.nix
@@ -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;
-  }