Skip to content

Commit c57b6d4

Browse files
committed
Quiet down the test output a bit more.
1 parent 29bdc0b commit c57b6d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

circle/test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
2626

2727
# this was a major issue previously, sanity check that we're using the
2828
# 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:"
3030
python -c 'import sys; print(sys.version)'
3131

3232

3333
echo "install plotly (ignoring possibly cached versions)"
34-
pip install -I ${PLOTLY_PACKAGE_ROOT} ||
34+
pip install -I ${PLOTLY_PACKAGE_ROOT} >/dev/null ||
3535
error_exit "${LINENO}: can't install plotly package from project root"
3636

3737
echo "import plotly to create .plotly dir if DNE"
38-
python -c 'import plotly' ||
38+
python -c 'import plotly' >/dev/null ||
3939
error_exit "${LINENO}: can't import plotly package"
4040

4141
echo "running tests for Python ${version} as user '$(whoami)'"

0 commit comments

Comments
 (0)