From 9d59507dc40f8532917653bc784f977c4b32a2ff Mon Sep 17 00:00:00 2001 From: Kar Petrosyan Date: Wed, 10 Dec 2025 17:49:29 +0400 Subject: [PATCH] more fixes --- scripts/install | 3 --- scripts/test | 7 +------ 2 files changed, 1 insertion(+), 9 deletions(-) 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 -- 2.47.3