Skip to content

Commit f517b50

Browse files
committed
manylinux-build-wheels: Install package and test
1 parent d160830 commit f517b50

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

scripts/manylinux-build-wheels.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,12 @@ for whl in dist/*.whl; do
5757
rm $whl
5858
done
5959

60+
# Install packages and test
61+
for PYBIN in /opt/python/*/bin/; do
62+
if [[ ${PYBIN} == *"cp26"* ]]; then
63+
echo "Skipping ${PYBIN}"
64+
continue
65+
fi
66+
${PYBIN}/pip install SimpleITK --user --no-cache-dir --no-index -f /work/dist
67+
(cd $HOME; ${PYBIN}/python -c 'import SimpleITK as sitk; print(sitk.Version())')
68+
done

0 commit comments

Comments
 (0)