Skip to content

Commit

Permalink
restore Darwin_arm
Browse files Browse the repository at this point in the history
still needed because
- developers may develop on ARM
- we want CI to run on Intel due to niftyreg complications
  • Loading branch information
alessandrofelder committed Feb 4, 2025
1 parent 7d530ff commit 140df2e
Show file tree
Hide file tree
Showing 21 changed files with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/tests/test_integration/test_registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@

from .utils import check_images_same, check_volumes_equal

test_dir = platform.system()
if platform.system() == "Darwin":
if platform.machine() == "x86_64":
test_dir = "Darwin_intel"
else:
test_dir = "Darwin_arm"
else:
test_dir = platform.system()

test_data_dir = Path(__file__).parent.parent.parent / "data"

whole_brain_data_dir = test_data_dir / "input" / "brain"
Expand Down

0 comments on commit 140df2e

Please sign in to comment.