From cb537e8e04fc5b5e9085619a6b8cddf2852c3e77 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Fri, 24 Feb 2023 20:42:48 +0100 Subject: [PATCH] use withSlowPg, withSlowPgrst for postgrest-test-spec --- nix/tools/tests.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nix/tools/tests.nix b/nix/tools/tests.nix index 9f5dc2e2b69..e6dffb9d715 100644 --- a/nix/tools/tests.nix +++ b/nix/tools/tests.nix @@ -28,7 +28,10 @@ let withEnv = postgrest.env; } '' - ${withTools.withPg} ${cabal-install}/bin/cabal v2-run ${devCabalOptions} \ + ${withTools.withSlowPgrst} \ + ${withTools.withPg} \ + ${withTools.withSlowPg} \ + ${cabal-install}/bin/cabal v2-run ${devCabalOptions} \ test:spec -- "''${_arg_leftovers[@]}" '';