Skip to content

Commit c9b9793

Browse files
committed
Add titles to html coverage tabs.
1 parent fce977e commit c9b9793

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ test:
3030
# test core things in the general 2.7 version that circle has
3131
- nosetests -xv plotly/tests --with-coverage --cover-package=plotly
3232
- mkdir "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}" || true
33-
- coverage html -d "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}"
33+
- coverage html -d "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}" --title=${PYENV_VERSION}

circle/test.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
4343
nosetests -xv plotly/tests --with-coverage --cover-package=plotly ||
4444
error_exit "${LINENO}: test suite failed for Python ${version}"
4545
mkdir "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}" || true
46-
coverage html -d "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}"
46+
coverage html -d "${CIRCLE_ARTIFACTS}/${PYENV_VERSION}" \
47+
--title=${PYENV_VERSION}
4748

4849
done

0 commit comments

Comments
 (0)