Skip to content
Snippets Groups Projects
Commit d6e18518 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

CI jobs are still being killed due to (I think) memory usage

parent 047ab19a
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -89,7 +89,12 @@ def test_coords(seed): ...@@ -89,7 +89,12 @@ def test_coords(seed):
for ad in atlases: for ad in atlases:
# atlasquery/ohi always uses 2mm resolution # atlasquery/ohi always uses 2mm resolution
atlas = fslatlases.loadAtlas(ad.atlasID, resolution=2) atlas = fslatlases.loadAtlas(
ad.atlasID,
resolution=2,
indexed=True,
calcRange=False,
loadData=False)
print(ad.name) print(ad.name)
...@@ -174,7 +179,12 @@ def test_mask(seed): ...@@ -174,7 +179,12 @@ def test_mask(seed):
# atlasquery always uses 2mm # atlasquery always uses 2mm
# resolution versions of atlases # resolution versions of atlases
atlas2mm = fslatlases.loadAtlas(desc.atlasID, resolution=2) atlas2mm = fslatlases.loadAtlas(
desc.atlasID,
resolution=2,
indexed=True,
calcRange=False,
loadData=False)
# Test with 1mm and 2mm masks # Test with 1mm and 2mm masks
for res in [1, 2]: for res in [1, 2]:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment