From fd3f5e9085737734d8769c21559461c26dc5a165 Mon Sep 17 00:00:00 2001 From: regnat Date: Wed, 23 Jun 2021 17:36:50 +0200 Subject: [PATCH] Make the CA tests actuall test CA derivations Fix a mistake in config.nix that was preventing `NIX_TESTS_CA_BY_DEFAULT` from having any meaningful effect --- tests/config.nix.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/config.nix.in b/tests/config.nix.in index 9b00d9ddb..7facbdcbc 100644 --- a/tests/config.nix.in +++ b/tests/config.nix.in @@ -22,6 +22,6 @@ rec { builder = shell; args = ["-e" args.builder or (builtins.toFile "builder-${args.name}.sh" "if [ -e .attrs.sh ]; then source .attrs.sh; fi; eval \"$buildCommand\"")]; PATH = path; - } // removeAttrs args ["builder" "meta"]) + } // caArgs // removeAttrs args ["builder" "meta"]) // { meta = args.meta or {}; }; -} // caArgs +}