From 90108556cad3c103ddced0a0c7d52dff781d54f1 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 5 Jun 2020 19:28:46 +0200 Subject: [PATCH] default.nix: disable tests they require a running postgresql instance which is atm not available in a nix-build sandbox. --- default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/default.nix b/default.nix index 119fd7d..1c4872a 100644 --- a/default.nix +++ b/default.nix @@ -34,5 +34,6 @@ mkDerivation { persistent persistent-mysql resourcet transformers yesod yesod-core yesod-test ]; + doCheck = false; license = stdenv.lib.licenses.agpl3; }