mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-22 01:03:07 +00:00
scripts/build_manylinux_in_docker.sh: use pytest instead of setup.py test
The latter fails on Python 3.13 since setuptools isn't installed by default. If we need to install something anyways, we might as well use the nicer pytest. Signed-off-by: Omar Sandoval <osandov@osandov.com>
This commit is contained in:
parent
468c58d095
commit
798ba053ce
@ -97,7 +97,8 @@ for pybin in /opt/python/cp*/bin; do
|
||||
if build_for_python "$pybin/python"; then
|
||||
"$pybin/pip" install drgn --no-index -f /tmp/manylinux_wheels/
|
||||
"$pybin/drgn" --version
|
||||
"$pybin/python" setup.py test
|
||||
"$pybin/pip" install pytest
|
||||
"$pybin/pytest"
|
||||
fi
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user