Commit d505afba authored by Andrew Murray's avatar Andrew Murray
Browse files

Install TEST_DEPENDS packages one line a time

parent 12b9e402
...@@ -323,9 +323,9 @@ function install_wheel { ...@@ -323,9 +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
for TEST_DEPENDENCY in $TEST_DEPENDS; do while read TEST_DEPENDENCY; do
pip install $(pip_opts) $@ $TEST_DEPENDENCY pip install $(pip_opts) $@ $TEST_DEPENDENCY
done done <<< "$TEST_DEPENDS"
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