File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,20 +16,20 @@ function error_exit
1616for version in ${PLOTLY_PYTHON_VERSIONS[@]} ; do
1717 echo Testing Python ${version}
1818
19- # get rid of the current virtualenv if we're in one
19+ echo " get rid of the current virtualenv if we're in one"
2020 if [ ${VIRTUAL_ENV} ]; then
2121 deactivate
2222 fi
2323
24- # drop us into a virtualenv
24+ echo " drop us into a virtualenv"
2525 source ${PLOTLY_VENV_DIR} /${version} /bin/activate ||
2626 error_exit " ${LINENO} : can't activate virtualenv for Python ${version} "
2727
28- # install plotly (ignoring possibly cached versions)
28+ echo " install plotly (ignoring possibly cached versions)"
2929 pip install -I ${PLOTLY_PACKAGE_ROOT} ||
3030 error_exit " ${LINENO} : can't install plotly package from project root"
3131
32- # import it once to make sure that works and to create .plotly dir if DNE
32+ echo " import plotly to create .plotly dir if DNE"
3333 python -c ' import plotly' ||
3434 error_exit " ${LINENO} : can't import plotly package"
3535
@@ -39,6 +39,7 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
3939# # test that setting permissions will work for import (and tests)
4040# chmod 660 ${PLOTLY_CONFIG_DIR} && python -c "import plotly"
4141
42+ echo " running tests"
4243 if [ ${version: 0: 3} == ' 2.7' ]
4344 then
4445 nosetests -xv plotly/tests/test_core \
You can’t perform that action at this time.
0 commit comments