Skip to content

Commit

Permalink
fix(tests): disable uv testing on ppc64le
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Jun 23, 2024
1 parent 4f9f285 commit deca00d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,9 @@ pipx run nox --version
pipx install --pip-args='--no-python-version-warning --no-input' nox
nox --version
tar --version | grep "GNU tar"
if [ "${AUDITWHEEL_POLICY:0:9}_${AUDITWHEEL_ARCH}" != "musllinux_s390x" ]; then
if [ "${AUDITWHEEL_POLICY:0:9}_${AUDITWHEEL_ARCH}" != "musllinux_s390x" ] && [ "${AUDITWHEEL_ARCH}" != "ppc64le" ]; then
# no uv on musllinux s390x
# FIXME, ppc64le test fails on Travis CI but works with qemu
uv version
mkdir /tmp/uv-test
pushd /tmp/uv-test
Expand Down

0 comments on commit deca00d

Please sign in to comment.