summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-08-17 19:31:21 +0530
committersinanmohd <sinan@sinanmohd.com>2024-08-17 20:22:15 +0530
commit3a00df97d6d1fa5a77af1953f1b23b2de7298eaa (patch)
treec1a4929d17a2bbfb65b7f7719d1f2b6bd4bd526c
parente4550b63118765c0affd653234749a92fc51961f (diff)
nixosTests/sunset-unbuilt-9: simplify test
-rw-r--r--nixos/tests/all-tests.nix14
1 files changed, 5 insertions, 9 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index b79b198..f7e8325 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -10,9 +10,9 @@ let
nodes.d.inputs.c = { }; # d->c
};
- # A B C D E
- # \ | / | |
- # U V W X
+ # A B C D
+ # \ | / |
+ # U V W
sunset.dag = {
nodes =
let
@@ -26,12 +26,10 @@ let
b = goalDependsOn [ "u" "v" ];
c = goalDependsOn [ "u" "v" ];
d = goalDependsOn [ "w" ];
- e = goalDependsOn [ "x" ];
u = { };
v = { };
w = { };
- x = { };
};
};
in
@@ -91,11 +89,11 @@ builtins.mapAttrs
];
};
- sunset-unbuilt-9 = {
+ sunset-unbuilt-7 = {
imports = [
{
dag = {
- test.unconstrained.builds = 9;
+ test.unconstrained.builds = 7;
constraints.builds = 5;
test.constrained.builds = 3;
@@ -115,11 +113,9 @@ builtins.mapAttrs
};
d.test.needed = true;
- e.test.needed = true;
u.test.needed = true;
v.test.needed = true;
w.test.needed = true;
- x.test.needed = true;
};
};
}