We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
release.yml
1 parent 3d23499 commit fc12c99Copy full SHA for fc12c99
1 file changed
.github/workflows/release.yml
@@ -39,8 +39,7 @@ jobs:
39
40
# Install uv
41
- name: Install uv
42
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
43
- shell: bash
+ uses: astral-sh/setup-uv@v5
44
45
# Add uv to the PATH
46
- name: Add uv to PATH
@@ -64,7 +63,11 @@ jobs:
64
63
# primarily affects the main dependency installation step.
65
66
- name: Run tests with coverage
67
- run: python -m pytest --cov=sqlmodel_crud_utils --cov-report=xml --cov-report=term # Generate XML and terminal reports
+ run: |
+ uv pip install pytest-cov
68
+
69
+ uv run pytest test --cov=sqlmodel_crud_utils
70
+ --cov-report=xml --cov-report=term # Generate XML and terminal reports
71
72
- name: Upload coverage report
73
uses: actions/upload-artifact@v4
0 commit comments