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 c45c59e commit a65fa89Copy full SHA for a65fa89
.github/workflows/pull_request.yaml
@@ -40,12 +40,12 @@ jobs:
40
shell: bash
41
42
- name: Unit tests
43
- run: uv run --frozen -- pytest tests/unit
+ run: uv run --frozen -- pytest --cov=python_template --cov-branch tests/unit
44
45
46
- name: Integration tests
47
if: false
48
- run: uv run --frozen -- pytest tests/integration
+ run: uv run --frozen -- pytest --cov=python_template --cov-branch --cov-append tests/integration
49
50
51
- name: Set up Docker Buildx
.gitignore
@@ -6,4 +6,5 @@ wheels/
6
*.egg-info
7
.venv/
8
.ruff_cache/
9
-.pytest_cache/
+.pytest_cache/
10
+.coverage
0 commit comments