Skip to content

Commit

Permalink
skip strange "Abort trap: 6" test on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Oct 17, 2023
1 parent 1203116 commit 9cdf8d1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_evo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9cdf8d1

Please sign in to comment.