We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61630c4 commit 9d59507Copy full SHA for 9d59507
2 files changed
scripts/install
@@ -1,7 +1,4 @@
1
#!/bin/sh -e
2
3
-echo "==> Installing Python…"
4
-uv python install
5
-
6
echo "==> Installing Python dependencies…"
7
uv sync --all-extras
scripts/test
@@ -1,17 +1,12 @@
#!/bin/sh
-export PREFIX=""
-if [ -d 'venv' ] ; then
- export PREFIX="venv/bin/"
-fi
8
set -ex
9
10
if [ -z $GITHUB_ACTIONS ]; then
11
scripts/check
12
fi
13
14
-${PREFIX}coverage run -m pytest "$@"
+uv run coverage run -m pytest "$@"
15
16
17
scripts/coverage
0 commit comments