Skip to content

Commit 2bb4718

Browse files
committed
convert some comments to echo calls.
1 parent c5a5e9f commit 2bb4718

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

circle/test.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ function error_exit
1616
for 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 \

0 commit comments

Comments
 (0)