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 18eacda commit 378f406Copy full SHA for 378f406
.github/workflows/ci.yml
@@ -41,22 +41,20 @@ jobs:
41
- name: "Install dependencies"
42
env:
43
UV_CACHE_DIR: ~/.cache/uv
44
- VIRTUAL_ENV: ./.venv
45
run: |
46
python -m pip install --upgrade uv
47
uv venv
+ source ./.venv/bin/activate
48
python -m uv pip install --upgrade .[dev]
49
50
- name: "Lint"
51
- env:
52
53
54
make lint
55
56
- name: "Run tests"
57
58
59
60
# We run tests against "." and not the tests directory as we test the README
61
# and documentation.
62
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml
0 commit comments