File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -202,9 +202,8 @@ jobs:
202
202
no_output_timeout : 2h
203
203
command : |
204
204
docker run -ti --rm=false \
205
- --entrypoint="/usr/local/miniconda/bin/py.test" \
206
- poldracklab/fmriprep:latest . \
207
- --doctest-modules --ignore=docs --ignore=setup.py
205
+ --entrypoint="py.test" poldracklab/fmriprep:latest \
206
+ /root/src/fmriprep/ --doctest-modules --ignore=docs --ignore=setup.py
208
207
- run :
209
208
name : Test fmriprep-wrapper (Python 2)
210
209
command : |
@@ -268,7 +267,7 @@ jobs:
268
267
docker run -ti --rm=false -v $PWD:/_build_html \
269
268
--entrypoint=sphinx-build poldracklab/fmriprep:latest \
270
269
-T -E -b html -d _build/doctrees-readthedocs -W -D \
271
- language=en docs/ /_build_html 2>&1 \
270
+ language=en /root/src/fmriprep/ docs/ /_build_html 2>&1 \
272
271
| tee $PWD/builddocs.log
273
272
cat $PWD/builddocs.log
274
273
grep -qv "ERROR" $PWD/builddocs.log
Original file line number Diff line number Diff line change @@ -160,9 +160,7 @@ RUN echo "${VERSION}" > /root/src/fmriprep/fmriprep/VERSION && \
160
160
rm -rf ~/.cache/pip
161
161
162
162
RUN ldconfig
163
-
164
- WORKDIR /root/src/fmriprep
165
-
163
+ WORKDIR /scratch
166
164
ENTRYPOINT ["/usr/local/miniconda/bin/fmriprep" ]
167
165
168
166
ARG BUILD_DATE
@@ -171,8 +169,9 @@ ARG VERSION
171
169
LABEL org.label-schema.build-date=$BUILD_DATE \
172
170
org.label-schema.name="FMRIPREP" \
173
171
org.label-schema.description="FMRIPREP - robust fMRI preprocessing tool" \
174
- org.label-schema.url="http://fmriprep.readthedocs.io " \
172
+ org.label-schema.url="http://fmriprep.org " \
175
173
org.label-schema.vcs-ref=$VCS_REF \
176
174
org.label-schema.vcs-url="https://github.com/poldracklab/fmriprep" \
177
175
org.label-schema.version=$VERSION \
178
176
org.label-schema.schema-version="1.0"
177
+
You can’t perform that action at this time.
0 commit comments