more fixes

This commit is contained in:
Kar Petrosyan 2025-12-10 17:49:29 +04:00
parent 61630c4a4b
commit 9d59507dc4
2 changed files with 1 additions and 9 deletions

View File

@ -1,7 +1,4 @@
#!/bin/sh -e
echo "==> Installing Python…"
uv python install
echo "==> Installing Python dependencies…"
uv sync --all-extras

View File

@ -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