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 e46b0e6 commit b1982f9Copy full SHA for b1982f9
smriprep/workflows/tests/test_anatomical.py
@@ -1,5 +1,6 @@
1
from pathlib import Path
2
3
+from nipype.pipeline.engine.utils import generate_expanded_graph
4
import nibabel as nb
5
import numpy as np
6
import pytest
@@ -202,7 +203,7 @@ def test_anat_fit_precomputes(
202
203
Path(path).touch()
204
205
# Create workflow
- init_anat_fit_wf(
206
+ wf = init_anat_fit_wf(
207
bids_root=str(bids_root),
208
output_dir=str(output_dir),
209
freesurfer=True,
@@ -220,3 +221,6 @@ def test_anat_fit_precomputes(
220
221
precomputed=precomputed,
222
omp_nthreads=1,
223
)
224
+
225
+ flatgraph = wf._create_flat_graph()
226
+ generate_expanded_graph(flatgraph)
0 commit comments