We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86c9c64 commit f44bb1eCopy full SHA for f44bb1e
test/test_to_ngff_zarr_itk.py
@@ -1,6 +1,9 @@
1
+import pytest
2
+
3
from ngff_zarr import Methods, to_multiscales
4
5
from ._data import verify_against_baseline
6
+import platform
7
8
9
def test_bin_shrink_isotropic_scale_factors(input_images):
@@ -16,6 +19,10 @@ def test_bin_shrink_isotropic_scale_factors(input_images):
16
19
verify_against_baseline(dataset_name, baseline_name, multiscales)
17
20
18
21
22
+@pytest.mark.skipif(
23
+ platform.system() == "Linux" and platform.machine() == "aarch64",
24
+ reason="Skipping on Linux ARM systems",
25
+)
26
def test_gaussian_isotropic_scale_factors(input_images):
27
dataset_name = "cthead1"
28
image = input_images[dataset_name]
0 commit comments