From 9cdf8d15211fa2e6836a434b825169ac3fa57107 Mon Sep 17 00:00:00 2001 From: Johnnie Gray Date: Mon, 16 Oct 2023 21:37:42 -0700 Subject: [PATCH] skip strange "Abort trap: 6" test on mac --- tests/test_evo.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_evo.py b/tests/test_evo.py index 4ef2a128..fbd22bb8 100644 --- a/tests/test_evo.py +++ b/tests/test_evo.py @@ -381,6 +381,11 @@ def norm(t, pt): assert ((np.array(gs_overlap_results) - 1.0) < 1e-3).all() def test_int_stop_calling_details(self, ham_rcr_psi): + import platform + + if platform.system() == "Darwin": + skip("Skipping test on macOS") + # test some details about the way Evolution is called with int_stop: # - Giving int_stop without any compute # - Giving int_stop with (t, p) and with (t, p, H) call signatures