Skip to content

Commit deca00d

Browse files
committed
fix(tests): disable uv testing on ppc64le
1 parent 4f9f285 commit deca00d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/run_tests.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,9 @@ pipx run nox --version
123123
pipx install --pip-args='--no-python-version-warning --no-input' nox
124124
nox --version
125125
tar --version | grep "GNU tar"
126-
if [ "${AUDITWHEEL_POLICY:0:9}_${AUDITWHEEL_ARCH}" != "musllinux_s390x" ]; then
126+
if [ "${AUDITWHEEL_POLICY:0:9}_${AUDITWHEEL_ARCH}" != "musllinux_s390x" ] && [ "${AUDITWHEEL_ARCH}" != "ppc64le" ]; then
127127
# no uv on musllinux s390x
128+
# FIXME, ppc64le test fails on Travis CI but works with qemu
128129
uv version
129130
mkdir /tmp/uv-test
130131
pushd /tmp/uv-test

0 commit comments

Comments
 (0)