Skip to content

Commit

Permalink
scripts/python-pip-test: skip test for unsupported python version 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
thomastrapp committed Dec 9, 2020
1 parent ced1286 commit b858d58
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/python-pip-test/python-pip-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ BLACKBOXCASED="$HEXTD/test/case"

for i in /opt/python/cp* ; do
V=$(basename $i)
if [[ "$V" == "cp39-cp39" ]] ; then
continue
fi

PIP=$(readlink -f /opt/python/$V/bin/pip)
if [[ "$USE_PYPI" = true ]] ; then
Expand All @@ -36,6 +39,9 @@ done
PYTESTD="$HEXTD/libhext/bindings/python/pytest"
for i in /opt/python/cp* ; do
V=$(basename $i)
if [[ "$V" == "cp39-cp39" ]] ; then
continue
fi

PIP=$(readlink -f /opt/python/$V/bin/pip)
$PIP install pytest
Expand Down

0 comments on commit b858d58

Please sign in to comment.