Commit 12b9e402 authored by Andrew Murray's avatar Andrew Murray
Browse files

Changed TEST_DEPENDS pip install to install one package at a time

parent 9bda5a9d
...@@ -323,7 +323,9 @@ function install_wheel { ...@@ -323,7 +323,9 @@ function install_wheel {
# MANYLINUX_URL (optional, default "") (via pip_opts function) # MANYLINUX_URL (optional, default "") (via pip_opts function)
local wheelhouse=$(abspath ${WHEEL_SDIR:-wheelhouse}) local wheelhouse=$(abspath ${WHEEL_SDIR:-wheelhouse})
if [ -n "$TEST_DEPENDS" ]; then if [ -n "$TEST_DEPENDS" ]; then
pip install $(pip_opts) $@ $TEST_DEPENDS for TEST_DEPENDENCY in $TEST_DEPENDS; do
pip install $(pip_opts) $@ $TEST_DEPENDENCY
done
fi fi
# Install compatible wheel # Install compatible wheel
pip install $(pip_opts) $@ \ pip install $(pip_opts) $@ \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment