Skip to content

Commit a5184c9

Browse files
committed
update scripts to raise errors when something failed
1 parent 317ad68 commit a5184c9

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

docker/circleci/run_builddocs.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
set -e
3+
set -x
4+
set -u
25

36
mkdir -p /scratch/docs
47
set -o pipefail && cd /root/src/nipype/doc && make html 2>&1 | tee /scratch/builddocs.log

docker/circleci/run_examples.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
set -e
3+
set -x
4+
set -u
25

36
mkdir -p /root/.nipype
47
echo '[logging]' > /root/.nipype/nipype.cfg

docker/circleci/run_nosetests.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/bash
2+
set -e
3+
set -x
4+
set -u
25

36
cd /root/src/nipype
47
mkdir -p /scratch/nose

docker/nipype_test_py27/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ENV LANG C.UTF-8
4545

4646
# Add conda-forge channel in conda
4747
RUN conda config --add channels conda-forge && \
48-
conda install -y lockfile nipype
48+
conda install -y lockfile nipype matplotlib sphinx
4949

5050
RUN mkdir -p /root/src/nipype
5151
COPY . /root/src/nipype

0 commit comments

Comments
 (0)