Skip to content

Commit 9d59507

Browse files
committed
more fixes
1 parent 61630c4 commit 9d59507

2 files changed

Lines changed: 1 addition & 9 deletions

File tree

scripts/install

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
#!/bin/sh -e
22

3-
echo "==> Installing Python…"
4-
uv python install
5-
63
echo "==> Installing Python dependencies…"
74
uv sync --all-extras

scripts/test

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
#!/bin/sh
22

3-
export PREFIX=""
4-
if [ -d 'venv' ] ; then
5-
export PREFIX="venv/bin/"
6-
fi
7-
83
set -ex
94

105
if [ -z $GITHUB_ACTIONS ]; then
116
scripts/check
127
fi
138

14-
${PREFIX}coverage run -m pytest "$@"
9+
uv run coverage run -m pytest "$@"
1510

1611
if [ -z $GITHUB_ACTIONS ]; then
1712
scripts/coverage

0 commit comments

Comments
 (0)