File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ dependencies:
11
11
# run all the pre-written installers (this will take a *while*)
12
12
- bash circle/setup.sh
13
13
# install testing tools for circle's version of things
14
- - pyenv global 2.7 && pip install nose coverage
14
+ - PYENV_VERSION= 2.7 && pip install nose coverage
15
15
override :
16
- - pyenv global 2.7 && pip install -I .
17
- - pyenv global 2.7 && cd ~ && python -c "import plotly"
16
+ - PYENV_VERSION= 2.7 && pip install -I .
17
+ - PYENV_VERSION= 2.7 && cd ~ && python -c "import plotly"
18
18
test :
19
19
override :
20
20
28
28
# - sudo chmod 600 ${PLOTLY_CONFIG_DIR} && python -c "import plotly"
29
29
30
30
# test core things in the general 2.7 version that circle has
31
- - pyenv global 2.7 && nosetests -xv plotly/tests --with-coverage --cover-package=plotly
31
+ - PYENV_VERSION= 2.7 && nosetests -xv plotly/tests --with-coverage --cover-package=plotly
32
32
- mkdir "${CIRCLE_ARTIFACTS}/2.7" || true
33
33
- coverage html -d "${CIRCLE_ARTIFACTS}/2.7" --title=2.7
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
17
17
echo Setting up Python ${version}
18
18
19
19
# exporting this variable (in this scope) chooses the python version
20
- pyenv global ${version}
20
+ export PYENV_VERSION= ${version}
21
21
echo " Using pyenv version $( pyenv version) "
22
22
23
23
# install core requirements all versions need
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ for version in ${PLOTLY_PYTHON_VERSIONS[@]}; do
17
17
echo Testing Python ${version}
18
18
19
19
# exporting this variable (in this scope) chooses the python version
20
- pyenv global ${version}
20
+ export PYENV_VERSION= ${version}
21
21
echo " Using pyenv version $( pyenv version) "
22
22
23
23
echo " python -c 'import sys; print(sys.version_info)' yields:"
You can’t perform that action at this time.
0 commit comments