Skip to content

Commit f6d5168

Browse files
committed
Test to check some variables during circle run.
1 parent 086fb95 commit f6d5168

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

circle/setup.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
2424
# exporting this variable (in this scope) chooses the python version
2525
export PYENV_VERSION=${version}
2626

27-
# only create a virtualenv if it doesn't already exist
27+
echo "Using pyenv version $(pyenv version)"
28+
29+
ls ${HOME}/.pyenv/versions
30+
31+
exit 1
32+
33+
# only create a pyvenv if it doesn't already exist
2834
if [ ! -d ${PLOTLY_VENV_DIR}/${version} ]; then
2935
virtualenv ${PLOTLY_VENV_DIR}/${version} ||
3036
error_exit "${LINENO}: can't install virtualenv for ${version}"

0 commit comments

Comments
 (0)