Skip to content

Commit 4b4b670

Browse files
committed
test: add minimal test for uv
1 parent 8811efb commit 4b4b670

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/run_tests.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,15 @@ 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
127+
# no uv on musllinux s390x
128+
uv version
129+
mkdir /tmp/uv-test
130+
pushd /tmp/uv-test
131+
uv venv --python python3.12
132+
uv pip install -r /opt/_internal/build_scripts/requirements3.12.txt
133+
popd
134+
fi
126135

127136
# check libcrypt.so.1 can be loaded by some system packages,
128137
# as LD_LIBRARY_PATH might not be enough.

0 commit comments

Comments
 (0)