Skip to content

Commit d979a2d

Browse files
committed
add another version and check we’ve got an array
1 parent 34f7e69 commit d979a2d

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ machine:
33
PLOTLY_PACKAGE_ROOT: ${PWD}
44
PLOTLY_CONFIG_DIR: ${HOME}/.plotly
55
PLOTLY_VENV_DIR: ${HOME}/venvs
6-
PLOTLY_PYTHON_VERSIONS: ( 3.4 ) # ( 2.6 2.7 3.3 3.4 )
6+
PLOTLY_PYTHON_VERSIONS: ( 3.3 3.4 ) # ( 2.6 2.7 3.3 3.4 )
77
PLOTLY_CORE_REQUIREMENTS_FILE: ${PWD}/requirements.txt
88
PLOTLY_OPTIONAL_REQUIREMENTS_FILE: ${PWD}/optional-requirements.txt
99
PLOTLY_OPTIONAL_REQUIREMENTS_FILE_2_6: ${PWD}/optional-requirements-2-6.txt

circle/setup.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/bash
22

3-
echo "running setup routine"
3+
echo "running setup routine with python versions:"
4+
for version in ${PYTHON_VERSIONS[@]}; do
5+
echo " ${version}"
6+
done
47

58
env
69

circle/test.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/bash
22

3-
echo "running test routine"
3+
echo "running test routine with python versions:"
4+
for version in ${PYTHON_VERSIONS[@]}; do
5+
echo " ${version}"
6+
done
47

58
env
69

0 commit comments

Comments
 (0)