File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -16,20 +16,20 @@ function error_exit
16
16
for version in ${PLOTLY_PYTHON_VERSIONS[@]} ; do
17
17
echo Testing Python ${version}
18
18
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"
20
20
if [ ${VIRTUAL_ENV} ]; then
21
21
deactivate
22
22
fi
23
23
24
- # drop us into a virtualenv
24
+ echo " drop us into a virtualenv"
25
25
source ${PLOTLY_VENV_DIR} /${version} /bin/activate ||
26
26
error_exit " ${LINENO} : can't activate virtualenv for Python ${version} "
27
27
28
- # install plotly (ignoring possibly cached versions)
28
+ echo " install plotly (ignoring possibly cached versions)"
29
29
pip install -I ${PLOTLY_PACKAGE_ROOT} ||
30
30
error_exit " ${LINENO} : can't install plotly package from project root"
31
31
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"
33
33
python -c ' import plotly' ||
34
34
error_exit " ${LINENO} : can't import plotly package"
35
35
@@ -39,6 +39,7 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
39
39
# # test that setting permissions will work for import (and tests)
40
40
# chmod 660 ${PLOTLY_CONFIG_DIR} && python -c "import plotly"
41
41
42
+ echo " running tests"
42
43
if [ ${version: 0: 3} == ' 2.7' ]
43
44
then
44
45
nosetests -xv plotly/tests/test_core \
You can’t perform that action at this time.
0 commit comments