mim-solvers: exclude flaky test

ref. https://github.com/machines-in-motion/mim_solvers/issues/52
This commit is contained in:
Guilhem Saurel 2025-04-10 13:15:41 +02:00
parent f0827ee619
commit 429b574bbf

View file

@ -51,6 +51,9 @@ stdenv.mkDerivation (finalAttrs: {
(lib.cmakeBool "BUILD_PYTHON_INTERFACE" pythonSupport)
(lib.cmakeBool "BUILD_WITH_PROXSUITE" true)
]
++ lib.optional (stdenv.hostPlatform.isDarwin) (
lib.cmakeFeature "CMAKE_CTEST_ARGUMENTS" "--exclude-regex;'py-test-clqr-osqp'"
)
++ lib.optional (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) (
lib.cmakeFeature "CMAKE_CTEST_ARGUMENTS" "--exclude-regex;'test_solvers'"
);