From 564fa9556fa7d5c001462923642801c71e6c6d7d 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 40bfe255..f8463931 100644 --- a/flake.nix +++ b/flake.nix @@ -99,6 +99,10 @@ }; cabal2nixOptions = "--benchmark -fdev"; + + overrides = _ : _: { + doCheck = system == "x86_64-linux"; + }; }; jupyterEnvironment = mkJupyterlabFromPath ./kernels {inherit pkgs monad-bayes;};