File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,16 +26,16 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
26
26
27
27
# this was a major issue previously, sanity check that we're using the
28
28
# version we *think* we're using (that pyenv is pointing to)
29
- echo " python -c 'import sys; print(sys.version)'"
29
+ echo " Running: python -c 'import sys; print(sys.version)'. We've got: "
30
30
python -c ' import sys; print(sys.version)'
31
31
32
32
33
33
echo " install plotly (ignoring possibly cached versions)"
34
- pip install -I ${PLOTLY_PACKAGE_ROOT} ||
34
+ pip install -I ${PLOTLY_PACKAGE_ROOT} > /dev/null ||
35
35
error_exit " ${LINENO} : can't install plotly package from project root"
36
36
37
37
echo " import plotly to create .plotly dir if DNE"
38
- python -c ' import plotly' ||
38
+ python -c ' import plotly' > /dev/null ||
39
39
error_exit " ${LINENO} : can't import plotly package"
40
40
41
41
echo " running tests for Python ${version} as user '$( whoami) '"
You can’t perform that action at this time.
0 commit comments