From 87c7098363462980aaac8554cd05eba04dee4996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20B=C3=A4renz?= Date: Fri, 10 Mar 2023 15:33:17 +0100 Subject: [PATCH] Don't test on MacOS See https://github.com/tweag/monad-bayes/pull/256, there are precision issues on macs. --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 1e203b0f..20d11b64 100644 --- a/flake.nix +++ b/flake.nix @@ -86,6 +86,10 @@ }; cabal2nixOptions = "--benchmark -fdev"; + + overrides = _ : _: { + doCheck = system == "x86_64-linux"; + }; }; jupyterEnvironment = mkJupyterlabFromPath ./kernels {inherit pkgs monad-bayes;};