ocamlPackages.owl: disable tests

This commit is contained in:
Vincent Laporte 2024-01-17 14:25:14 +01:00 committed by Vincent Laporte
parent a79c810122
commit aeae9432bd

@ -1,5 +1,4 @@
{ stdenv
, buildDunePackage
{ buildDunePackage
, dune-configurator
, fetchFromGitHub
, alcotest
@ -16,8 +15,6 @@ buildDunePackage rec {
inherit (owl-base) version src meta;
duneVersion = "3";
checkInputs = [ alcotest ];
buildInputs = [ dune-configurator stdio ];
propagatedBuildInputs = [
@ -27,5 +24,7 @@ buildDunePackage rec {
npy
];
doCheck = !stdenv.isDarwin; # https://github.com/owlbarn/owl/issues/462
doCheck = false;
# Tests fail with Clang: https://github.com/owlbarn/owl/issues/462
# and with GCC 13: https://github.com/owlbarn/owl/issues/653
}