Skip to content

Commit

Permalink
Install pyteomics consecutively
Browse files Browse the repository at this point in the history
  • Loading branch information
levitsky committed May 19, 2022
1 parent 8a0e7e2 commit 0a49c98
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ create() {
deps() {
eval "${ROOT}/versions/${PREFIX}${1}/bin/pip" install -U pip wheel
eval "${ROOT}/versions/${PREFIX}${1}/bin/pip" install -U -r ../test-requirements.txt
eval "${ROOT}/versions/${PREFIX}${1}/bin/pip" install -U ..
}

run() {
Expand Down Expand Up @@ -66,6 +65,10 @@ parallel create :::: python-versions.txt
if [[ $NODEPS == 0 ]] ; then
echo "Installing dependencies..."
parallel deps :::: python-versions.txt
while read pv; do
echo "${ROOT}/versions/${PREFIX}${pv}/bin/pip" install -U ..
eval "${ROOT}/versions/${PREFIX}${pv}/bin/pip" install -U ..
done < python-versions.txt
fi

if [[ $MODE == "all" ]] ; then
Expand Down

0 comments on commit 0a49c98

Please sign in to comment.