File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,14 @@ cloneorpull common-workflow-language https://github.com/common-workflow-language
25
25
docker pull node:slim
26
26
27
27
# Test for Python 2.7 and Python 3
28
- for PYTHON_VERSION in 2 3
28
+ for PYTHON_VERSION in 2.7 3
29
29
do
30
- venv cwltool-venv
30
+ venv cwltool-venv${PYTHON_VERSION}
31
31
export PIP_DOWNLOAD_CACHE=/var/lib/jenkins/pypi-cache/
32
- pip install -U setuptools wheel pip
33
- pip install .
34
- pip install " cwltest>=1.0.20160825151655"
32
+ # use pip2.7 and pip3 in separate loop runs
33
+ pip${PYTHON_VERSION} install -U setuptools wheel pip
34
+ pip${PYTHON_VERSION} install .
35
+ pip${PYTHON_VERSION} install " cwltest>=1.0.20160825151655"
35
36
pushd common-workflow-language
36
37
git clean --force -d -x || /bin/true
37
38
# shellcheck disable=SC2154
You can’t perform that action at this time.
0 commit comments