Skip to content

Commit

Permalink
add vault to PATH of server-integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
notgne2 committed Jun 7, 2022
1 parent 4bb258e commit f5e7977
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,13 @@
lib = project.coffer.components.library;
haddock = project.coffer.components.library.haddock;

server-integration = pkgs.build.runCheck "cd ${src} && ${project.coffer.components.tests.server-integration}/bin/server-integration";
server-integration = pkgs.runCommand "server-integration" {
buildInputs = with pkgs; [ vault ];
} ''
cd ${./.}
${project.coffer.components.tests.server-integration}/bin/server-integration
touch $out
'';
};

impureChecks = {
Expand Down

0 comments on commit f5e7977

Please sign in to comment.