about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-04-22 07:31:53 +0100
committerSergei Trofimovich <slyich@gmail.com>2024-04-22 07:32:22 +0100
commit57d31b8c5414fef3a22121a1e41d3c181f096143 (patch)
tree149b0be9afd09b67e99bf6f15147178d87d5a35b /nixos/tests
parentce83e19fed21b3b799796cfd5840d7fc1099f79d (diff)
redlib.tests: fix eval
Without the change the eval fails as:

    $ nix build --no-link -f. redlib.tests
    error: attribute 'redlib' missing
       at pkgs/by-name/re/redlib/package.nix:50:26:
           49|   passthru.tests = {
           50|     inherit (nixosTests) redlib;
             |                          ^
           51|   };
       Did you mean redis?
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/all-tests.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 232f10d7c24dd..aedc8f78ba20c 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -782,6 +782,7 @@ in {
   rasdaemon = handleTest ./rasdaemon.nix {};
   readarr = handleTest ./readarr.nix {};
   redis = handleTest ./redis.nix {};
+  redlib = handleTest ./redlib.nix {};
   redmine = handleTest ./redmine.nix {};
   restartByActivationScript = handleTest ./restart-by-activation-script.nix {};
   restic-rest-server = handleTest ./restic-rest-server.nix {};