Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
multibuild
Commits
12b9e402
Commit
12b9e402
authored
Jun 29, 2018
by
Andrew Murray
Browse files
Changed TEST_DEPENDS pip install to install one package at a time
parent
9bda5a9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
common_utils.sh
common_utils.sh
+3
-1
No files found.
common_utils.sh
View file @
12b9e402
...
@@ -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
)
$@
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment