-
Notifications
You must be signed in to change notification settings - Fork 535
[DOC] add documentation & doc tests to fsl preprocess #1851
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
Closed
+394
−275
Closed
Changes from all commits
Commits
Show all changes
67 commits
Select commit
Hold shift + click to select a range
18eedf7
fix: make outvol mandatory
mgxd 2cecd53
enh: testing
mgxd 9990a53
Merge branch 'tst/travis' of github.com:mgxd/nipype into fix/mnibias
mgxd ebfbc42
Merge branch 'fix/mnibias' of https://github.com/mgxd/nipype into fix…
mgxd 4318274
fix: doctest
mgxd aaecb34
Merge branch 'fix/mnibias' of github.com:mgxd/nipype into fix/mnibias
mgxd 5f040e9
Merge branch 'fix/mnibias' of github.com:mgxd/nipype into fix/mnibias
mgxd 5782634
enh: genfile
mgxd c62acee
Merge branch 'fix/mnibias' of github.com:mgxd/nipype into fix/mnibias
mgxd fd1dda6
fix: outputspec
mgxd a56bfed
Merge branch 'fix/mnibias' of github.com:mgxd/nipype into fix/mnibias
mgxd cb74279
fix: outputspec attribute
mgxd a5fc440
fix: grab out file
mgxd 6a44c6e
fix: mnibias test
mgxd b97a329
fix: removed changed file
mgxd db397cc
removed obligatory xvfb dependency
TheChymera 8231470
fix: use _outputs()
mgxd 8d935fb
fix: removed list outputs and test changes
mgxd 2ef535b
Merge branch 'master' of github.com:nipy/nipype into fix/mnibias
mgxd ba1a863
removed genfile
mgxd 8c831f8
added non steady state detector
chrisgorgo d9fa4f6
[skip ci] changelog
chrisgorgo 8bacfb6
Merge branch 'master' into enh/nstdstate
chrisgorgo e1ca942
fixed a botched merge
chrisgorgo 23882e2
remove unused node in FSL dmri workflow
alexsavio da1bd76
Merge branch 'master' of github.com:nipy/nipype into fix/mnibias
mgxd f95fe84
Merge branch 'master' into enh/nstdstate
chrisgorgo 2f8168c
added package and handle to extra_requires
TheChymera 9e4a94d
add documentation & doc tests to fsl preprocess
neuroumbrage 0620aba
Merge pull request #1847 from alexsavio/patch-2
satra 1188b50
Merge pull request #1806 from mgxd/fix/mnibias
satra 8ff0af5
Merge pull request #1839 from chrisfilo/enh/nstdstate
satra cfca7cc
Merge pull request #1819 from TheChymera/xvfbwrapper
satra e450340
Update README.rst
satra 4f8d29a
[FIX] CircleCI tests - error codes are not propagated
oesteban 0ce1831
prevent "Error removing intermediate container" during docker build
oesteban 2d10e28
fix failing test
oesteban 76e4392
make outlier testing deterministic
chrisgorgo 6c60c58
fix tests
oesteban 1419406
Place CODECOV_TOKEN in main circle.yml, sort out bash settings in cir…
oesteban 0366859
Merge pull request #1859 from nipy/fix/outlier_deterministic
chrisgorgo 26dfd79
fix freesurfer test
oesteban 71c9538
Add -hires and -expert flags to ReconAll
effigies 260a275
Add ExpertOptions interface to freesurfer.utils
effigies af036f7
Accept expert options as a dictionary
effigies 2aa325e
Explicitly add extra options to ReconAllInputSpec
effigies dd4f101
Merge pull request #1858 from oesteban/fix/CircleTests
chrisgorgo 07a75a6
Merge pull request #1857 from effigies/reconall_newparams
satra 5e75886
make specs
effigies 31f6f3d
crazy file
satra 0424b65
Merge pull request #1865 from effigies/make_specs
satra 534d7b1
Merge remote-tracking branch 'upstream/master' into fix/bru2
satra b2e83fb
fixed auto tests and style
satra ffe7dd5
fixed missing brukerdir from install
satra 63c108f
fix: remove deprecated interface.
satra 9a2206b
fix: namesource behavior and test error
satra e4ce636
fix: allow tests to be installed with nipype
satra 59c8dba
fix: typo
satra 6dc7b1c
fix: removed unnecessary test
satra a81d993
Merge pull request #1866 from satra/fix/bru2
satra 6286ed8
fixing related files
f41abd9
improving solution and updating tests for related_files function
10b9675
Merge pull request #1874 from himito/feature/fix_copyfiles
satra d6bcef9
FIX: AntsJointFusion unicode command line formatting
hjmjohnson 59a146d
[FIX] Doctest of antsJointFusion failing
oesteban dd1ed4f
Merge pull request #1879 from oesteban/fix/AntsJointFusion
satra 9c3f5ee
Merge remote-tracking branch 'nipy/master'
neuroumbrage File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
# | ||
# This script pull all coverage files into the $CIRCLE_TEST_REPORTS folder | ||
# and sends data to codecov. | ||
# | ||
|
||
# Setting # $ help set | ||
set -e # Exit immediately if a command exits with a non-zero status. | ||
set -u # Treat unset variables as an error when substituting. | ||
set -x # Print command traces before executing command. | ||
|
||
mkdir -p ${CIRCLE_TEST_REPORTS}/ | ||
for report in $( ls ~/scratch/*.xml ); do | ||
rname=$( basename $report ) | ||
cp ${report} ${CIRCLE_TEST_REPORTS}/${rname:: -4}_${CIRCLE_NODE_INDEX}.xml | ||
done | ||
|
||
# Send coverage data to codecov.io | ||
curl -so codecov.io https://codecov.io/bash | ||
chmod 755 codecov.io | ||
|
||
find "${CIRCLE_TEST_REPORTS}/" -name 'coverage*.xml' -print0 | \ | ||
xargs -0 -I file ./codecov.io -f file -t "${CODECOV_TOKEN}" -F unittests | ||
find "${CIRCLE_TEST_REPORTS}/" -name 'smoketests*.xml' -print0 | \ | ||
xargs -0 -I file ./codecov.io -f file -t "${CODECOV_TOKEN}" -F smoketests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,8 @@ def test_FramewiseDisplacement_inputs(): | |
), | ||
out_file=dict(usedefault=True, | ||
), | ||
parameter_source=dict(mandatory=True, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @chrisfilo, another auto test that needs update? |
||
), | ||
radius=dict(usedefault=True, | ||
), | ||
save_plot=dict(usedefault=True, | ||
|
22 changes: 7 additions & 15 deletions
22
...pe/algorithms/tests/test_auto_ErrorMap.py → ...tests/test_auto_NonSteadyStateDetector.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chrisfilo is this something we forgot to update in master?