From c984b85126cf91ea3b319ae675e6be669d3602b5 Mon Sep 17 00:00:00 2001 From: mathurinm Date: Fri, 16 Feb 2024 11:03:06 +0100 Subject: [PATCH] skip snapml --- test_config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test_config.py b/test_config.py index ebe6093..6c1fa34 100644 --- a/test_config.py +++ b/test_config.py @@ -17,3 +17,6 @@ def check_test_solver_install(solver_class): cuda_version = get_cuda_version() if cuda_version is None: pytest.xfail("Cuml needs a working GPU hardware.") + if "snapml" in solver_class.name.lower(): + if sys.platform == "darwin": + pytest.xfail("SNAPML segfaults on MacOS.")