From: Kar Petrosyan Date: Wed, 10 Dec 2025 13:49:29 +0000 (+0400) Subject: more fixes X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d59507dc40f8532917653bc784f977c4b32a2ff;p=thirdparty%2Fhttpx.git more fixes --- diff --git a/scripts/install b/scripts/install index adcb1cf0..e2045297 100755 --- a/scripts/install +++ b/scripts/install @@ -1,7 +1,4 @@ #!/bin/sh -e -echo "==> Installing Python…" -uv python install - echo "==> Installing Python dependencies…" uv sync --all-extras diff --git a/scripts/test b/scripts/test index d778a544..8ec045b6 100755 --- a/scripts/test +++ b/scripts/test @@ -1,17 +1,12 @@ #!/bin/sh -export PREFIX="" -if [ -d 'venv' ] ; then - export PREFIX="venv/bin/" -fi - set -ex if [ -z $GITHUB_ACTIONS ]; then scripts/check fi -${PREFIX}coverage run -m pytest "$@" +uv run coverage run -m pytest "$@" if [ -z $GITHUB_ACTIONS ]; then scripts/coverage