Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion nipype/interfaces/ants/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,9 @@ class RegistrationInputSpec(ANTSCommandInputSpec):
desc="The Lower quantile to clip image ranges",
)

verbose = traits.Bool(argstr="-v", default_value=False, usedefault=True)
verbose = traits.Bool(
argstr="-v", default_value=False, usedefault=True, nohash=True
)


class RegistrationOutputSpec(TraitedSpec):
Expand Down
1 change: 1 addition & 0 deletions nipype/interfaces/ants/tests/test_auto_Registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ def test_Registration_inputs():
),
verbose=dict(
argstr="-v",
nohash=True,
usedefault=True,
),
winsorize_lower_quantile=dict(
Expand Down
2 changes: 1 addition & 1 deletion nipype/interfaces/base/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def __init__(self, **inputs):
assert {} == check_dict(data_dict, tsthash2.inputs.get_traitsfree())

_, hashvalue = tsthash.inputs.get_hashval(hash_method="timestamp")
assert "8562a5623562a871115eb14822ee8d02" == hashvalue
assert hashvalue == "e35bf07fea8049cc02de9235f85e8903"


class MinVerInputSpec(nib.TraitedSpec):
Expand Down