File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 29
29
30
30
# test core things in the general 2.7 version that circle has
31
31
- nosetests -xv plotly/tests --with-coverage --cover-package=plotly
32
- - mkdir "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}"
32
+ - mkdir "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}" || true
33
33
- coverage html -d "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}"
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
42
42
echo " running tests for Python ${version} as user '$( whoami) '"
43
43
nosetests -xv plotly/tests --with-coverage --cover-package=plotly ||
44
44
error_exit " ${LINENO} : test suite failed for Python ${version} "
45
- mkdir " ${CIRCLE_ARTIFACTS} /${PYENV_VERSION} "
45
+ mkdir " ${CIRCLE_ARTIFACTS} /${PYENV_VERSION} " || true
46
46
coverage html -d " ${CIRCLE_ARTIFACTS} /${PYENV_VERSION} "
47
47
48
48
done
You can’t perform that action at this time.
0 commit comments