Skip to content

Commit

Permalink
Don't test on MacOS
Browse files Browse the repository at this point in the history
See #256,
there are precision issues on macs.
  • Loading branch information
turion committed May 10, 2023
1 parent 583ebc8 commit 26fb44a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
};

cabal2nixOptions = "--benchmark -fdev";

# 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;};
Expand Down

0 comments on commit 26fb44a

Please sign in to comment.