Skip to content

Commit dc64c72

Browse files
committed
Install pybids from github in travis
1 parent 72bd8e2 commit dc64c72

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.travis.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ python:
88
- 3.5
99
- 3.6
1010
env:
11-
- INSTALL_DEB_DEPENDECIES=true NIPYPE_EXTRAS="doc,tests,fmri,profiler,pybids"
12-
- INSTALL_DEB_DEPENDECIES=false NIPYPE_EXTRAS="doc,tests,fmri,profiler,pybids"
13-
- INSTALL_DEB_DEPENDECIES=true NIPYPE_EXTRAS="doc,tests,fmri,profiler,duecredit,pybids"
11+
- INSTALL_DEB_DEPENDECIES=true NIPYPE_EXTRAS="doc,tests,fmri,profiler"
12+
- INSTALL_DEB_DEPENDECIES=false NIPYPE_EXTRAS="doc,tests,fmri,profiler"
13+
- INSTALL_DEB_DEPENDECIES=true NIPYPE_EXTRAS="doc,tests,fmri,profiler,duecredit"
1414
before_install:
1515
- function apt_inst {
1616
if $INSTALL_DEB_DEPENDECIES; then sudo rm -rf /dev/shm; fi &&
@@ -36,7 +36,12 @@ before_install:
3636
conda install python=${TRAVIS_PYTHON_VERSION} &&
3737
conda config --add channels conda-forge &&
3838
conda install -y nipype icu &&
39-
rm -r ${CONDA_HOME}/lib/python${TRAVIS_PYTHON_VERSION}/site-packages/nipype*; }
39+
rm -r ${CONDA_HOME}/lib/python${TRAVIS_PYTHON_VERSION}/site-packages/nipype*;
40+
pushd $HOME;
41+
git clone https://github.com/INCF/pybids.git;
42+
cd pybids;
43+
pip install -e .;
44+
popd; }
4045
# Add install of vtk and mayavi to test mesh (disabled): conda install -y vtk mayavi
4146
- travis_retry apt_inst
4247
- travis_retry conda_inst

0 commit comments

Comments
 (0)