Skip to content

Commit

Permalink
FIXUP
Browse files Browse the repository at this point in the history
  • Loading branch information
turion committed May 10, 2023
1 parent 68cc119 commit fc32136
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;};
Expand Down

0 comments on commit fc32136

Please sign in to comment.