8000 FIX: Test failures by effigies · Pull Request #3587 · nipy/nipype · GitHub
[go: up one dir, main page]

Skip to content

FIX: Test failures #3587

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FIX: make specs
  • Loading branch information
effigies committed Jul 5, 2023
commit 6f3ed28738961b0cee72f8caf5693dd42cbebbc7
4 changes: 2 additions & 2 deletions nipype/interfaces/fsl/tests/test_auto_ProbTrackX.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ def test_ProbTrackX_inputs():
argstr="--randfib=%d",
),
random_seed=dict(
argstr="--rseed",
argstr="--rseed=%d",
),
s2tastext=dict(
argstr="--s2tastext",
),
sample_random_points=dict(
argstr="--sampvox",
argstr="--sampvox=%.3f",
),
samples_base_name=dict(
argstr="--samples=%s",
Expand Down
4 changes: 2 additions & 2 deletions nipype/interfaces/fsl/tests/test_auto_ProbTrackX2.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ def test_ProbTrackX2_inputs():
argstr="--randfib=%d",
),
random_seed=dict(
argstr="--rseed",
argstr="--rseed=%d",
),
s2tastext=dict(
argstr="--s2tastext",
),
sample_random_points=dict(
argstr="--sampvox",
argstr="--sampvox=%.3f",
),
samples_base_name=dict(
argstr="--samples=%s",
Expand Down
3 changes: 1 addition & 2 deletions nipype/interfaces/tests/test_auto_Dcm2niix.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ def test_Dcm2niix_inputs():
argstr="-i",
),
merge_imgs=dict(
argstr="-m",
usedefault=True,
argstr="-m %d",
),
out_filename=dict(
argstr="-f %s",
Expand Down
0