diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-08-11 16:41:33 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-08-11 16:41:33 +0530 |
commit | 51528320d9ab23956d5d6492c38b5ef3899c2226 (patch) | |
tree | 794611fd6002379c3af1111cd8f03f63329d1f64 /nixos/tests | |
parent | 9dfb301b243c0ce4e97b74434debfd73590dbf47 (diff) |
nixosTests/all-tests: always import dsl
Diffstat (limited to 'nixos/tests')
-rw-r--r-- | nixos/tests/all-tests.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 701994b..e255fbe 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -27,6 +27,7 @@ builtins.mapAttrs ''; } // value + // { imports = value.imports ++ [ dsl ]; } ) ) { @@ -37,7 +38,6 @@ builtins.mapAttrs dag.needDownloads = 0; } diamond - dsl ]; }; diamond-unbuilt-2 = { @@ -50,7 +50,6 @@ builtins.mapAttrs dag.needDownloads = 2; } diamond - dsl ]; }; diamond-unbuilt-4 = { @@ -61,7 +60,6 @@ builtins.mapAttrs dag.needDownloads = 0; } diamond - dsl ]; }; } |