Commit 32ef3b93 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

crocoddyl: deactivate failing tests on darwin for now

parent 6d29edca
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -59,10 +59,16 @@ stdenv.mkDerivation (finalAttrs: {
      python3Packages.scipy
    ];

  cmakeFlags = [
  cmakeFlags =
    [
      (lib.cmakeBool "INSTALL_DOCUMENTATION" true)
      (lib.cmakeBool "BUILD_EXAMPLES" pythonSupport)
      (lib.cmakeBool "BUILD_PYTHON_INTERFACE" pythonSupport)
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [
      # ref. https://github.com/stack-of-tasks/pinocchio/issues/2563
      # remove this for crocoddyl >= 3.0.0
      (lib.cmakeFeature "CMAKE_CTEST_ARGUMENTS" "--exclude-regex;test_pybinds_*")
    ];

  prePatch = ''