From fc321369bbef54e5bccca740374bb70ce61d2356 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20B=C3=A4renz?= Date: Wed, 10 May 2023 16:16:39 +0200 Subject: [PATCH] FIXUP --- flake.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 706212b4..210b80be 100644 --- a/flake.nix +++ b/flake.nix @@ -100,9 +100,8 @@ cabal2nixOptions = "--benchmark -fdev"; - modifier = drv: drv // { - doCheck = builtins.trace "system is ${system}" system == "x86_64-linux"; - }; + # https://github.com/tweag/monad-bayes/pull/256: Don't run tests on Mac because of machine precision issues + modifier = drv: if system == "x86_64-linux" then drv else pkgs.haskell.lib.dontCheck drv; }; jupyterEnvironment = mkJupyterlabFromPath ./kernels {inherit pkgs monad-bayes;};