Skip to content

Commit 341db5a

Browse files
committed
more debug
1 parent c54de25 commit 341db5a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docker/circleci/run_nosetests.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ set -e
33
set -x
44
set -u
55

6+
env
7+
68
PYTHON_VERSION=$( python -c "import sys; print('{}{}'.format(sys.version_info[0], sys.version_info[1]))" )
79

810
# Create necessary directories
@@ -24,16 +26,16 @@ fi
2426
cd /root/src/nipype/
2527
make clean
2628
nosetests -s nipype -c /root/src/nipype/.noserc --xunit-file="/scratch/nosetests_py${PYTHON_VERSION}.xml" --cover-xml-file="/scratch/coverage_py${PYTHON_VERSION}.xml"
27-
bash <(curl -s https://codecov.io/bash) -f /scratch/coverage_py${PYTHON_VERSION}.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -F unittests
29+
bash <(curl -s https://codecov.io/bash) -t ac172a50-8e66-42e5-8822-5373fcf54686 -cF unittests
2830

2931
# Workaround: run here the profiler tests in python 3
3032
if [[ "${PYTHON_VERSION}" -ge "30" ]]; then
3133
echo '[execution]' >> /root/.nipype/nipype.cfg
3234
echo 'profile_runtime = true' >> /root/.nipype/nipype.cfg
3335
nosetests nipype/interfaces/tests/test_runtime_profiler.py --xunit-file="/scratch/nosetests_py${PYTHON_VERSION}_profiler.xml" --cover-xml-file="/scratch/coverage_py${PYTHON_VERSION}_profiler.xml"
34-
bash <(curl -s https://codecov.io/bash) -f /scratch/coverage_py${PYTHON_VERSION}_profiler.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -F unittests
36+
bash <(curl -s https://codecov.io/bash) -t ac172a50-8e66-42e5-8822-5373fcf54686 -cF unittests
3537
nosetests nipype/pipeline/plugins/tests/test_multiproc*.py --xunit-file="/scratch/nosetests_py${PYTHON_VERSION}_multiproc.xml" --cover-xml-file="/scratch/coverage_py${PYTHON_VERSION}_multiproc.xml"
36-
bash <(curl -s https://codecov.io/bash) -f /scratch/coverage_py${PYTHON_VERSION}_multiproc.xml -t ac172a50-8e66-42e5-8822-5373fcf54686 -F unittests
38+
bash <(curl -s https://codecov.io/bash) -t ac172a50-8e66-42e5-8822-5373fcf54686 -cF unittests
3739
fi
3840

3941
# Copy crashfiles to scratch

0 commit comments

Comments
 (0)