Skip to content

Commit 06fdb99

Browse files
committed
test: add minimal test for uv
1 parent e195670 commit 06fdb99

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
@@ -120,6 +120,15 @@ pipx run nox --version
120120
pipx install --pip-args='--no-python-version-warning --no-input' nox
121121
nox --version
122122
tar --version | grep "GNU tar"
123+
if [ "${AUDITWHEEL_POLICY:0:9}_${AUDITWHEEL_ARCH}" != "musllinux_s390x" ]; then
124+
# no uv on musllinux s390x
125+
uv version
126+
mkdir /tmp/uv-test
127+
pushd /tmp/uv-test
128+
uv venv --python python3.12
129+
uv pip install -r /opt/_internal/build_scripts/requirements3.12.txt
130+
popd
131+
fi
123132

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

0 commit comments

Comments
 (0)