Skip to content

Commit

Permalink
Changed TEST_DEPENDS pip install to install one package at a time
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Jun 29, 2018
1 parent 99d8d0c commit 9d6a952
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion common_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,9 @@ function install_wheel {
# MANYLINUX_URL (optional, default "") (via pip_opts function)
local wheelhouse=$(abspath ${WHEEL_SDIR:-wheelhouse})
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
# Install compatible wheel
pip install $(pip_opts) $@ \
Expand Down

0 comments on commit 9d6a952

Please sign in to comment.