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 c8622bb commit 7f6598eCopy full SHA for 7f6598e
.github/workflows/ci.yml
@@ -44,18 +44,18 @@ jobs:
44
UV_CACHE_DIR: /home/runner/.cache/uv
45
run: |
46
curl -LsSf https://astral.sh/uv/install.sh | sh
47
- uv venv
48
- source ./.venv/bin/activate
+ uv /home/runner/.venv
+ source /home/runner/.venv/bin/activate
49
uv pip install --upgrade --editable ".[dev]"
50
51
- name: "Lint"
52
53
54
make lint
55
56
- name: "Run tests"
57
58
59
# We run tests against "." and not the tests directory as we test the README
60
# and documentation.
61
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml
0 commit comments