Skip to content

Commit 00095c4

Browse files
committed
fix typo in .coveragerc
1 parent 7b67911 commit 00095c4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.coveragerc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ omit =
66
nipype/external/*
77
nipype/fixes/*
88
tools/*
9+
doc/*
910
*/tests/*
1011
include =
11-
tools/run_exaples.py
12+
tools/run_examples.py
1213

1314
[report]
1415
exclude_lines =

docker/files/run_pytests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [[ "${PYTHON_VERSION}" -ge "30" ]]; then
3131
echo 'profile_runtime = true' >> ${HOME}/.nipype/nipype.cfg
3232
py.test -n ${CIRCLE_NCPUS:-1} -v --junitxml=${WORKDIR}/pytests_py${PYTHON_VERSION}_profiler.xml --cov-report xml:${WORKDIR}/coverage_py${PYTHON_VERSION}_profiler.xml /src/nipype/nipype/interfaces/tests/test_runtime_profiler.py && \
3333
py.test -n ${CIRCLE_NCPUS:-1} -v --junitxml=${WORKDIR}/pytests_py${PYTHON_VERSION}_multiproc.xml --cov-report xml:${WORKDIR}/coverage_py${PYTHON_VERSION}_multiproc.xml /src/nipype/nipype/pipeline/plugins/tests/test_multiproc*.py
34-
exit_code=$(( $exit_code + $?))
34+
exit_code=$(( $exit_code + $? ))
3535
fi
3636

3737
find /src/nipype/ -name "crash-*" -exec mv {} ${WORKDIR}/crashfiles/ \;

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[pytest]
2-
norecursedirs = .git build dist doc nipype/external tools examples tools src
2+
norecursedirs = .git build dist doc nipype/external tools examples src
33
addopts = --doctest-modules

0 commit comments

Comments
 (0)