Use cabal v2-exec to run io tests, include io tests in nix-shell by default; remove obsolete ncat dependency (#1673)
Use cabal v2-exec to run io tests, include io tests in nix-shell by default; remove obsolete ncat dependency
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
#
|
||||
# We highly recommend that use the PostgREST binary cache by installing cachix
|
||||
# (https://app.cachix.org/) and running `cachix use postgrest`.
|
||||
{ ioTests ? false, memoryTests ? false, docker ? false, release ? false }:
|
||||
{ memoryTests ? false, docker ? false, release ? false }:
|
||||
let
|
||||
postgrest =
|
||||
import ./default.nix;
|
||||
@@ -32,7 +32,6 @@ lib.overrideDerivation postgrest.env (
|
||||
postgrest.tests
|
||||
postgrest.style
|
||||
]
|
||||
++ lib.optional ioTests postgrest.tests.ioTests
|
||||
++ lib.optional memoryTests postgrest.tests.memoryTests
|
||||
++ lib.optional docker postgrest.docker
|
||||
++ lib.optional release postgrest.release;
|
||||
|
||||
Reference in New Issue
Block a user