Skip to content

Commit 5f35fbd

Browse files
committed
fix(pytest): without --editable the coverage report is not generated correctly
1 parent 8638403 commit 5f35fbd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pytest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,10 @@ jobs:
5555
${{ runner.os }}-pip-${{ matrix.python-version }}-
5656
${{ runner.os }}-pip-
5757
58-
- name: Install dependencies
58+
- name: Install dependencies and application
59+
# without --editable the coverage report is not generated correctly
5960
run: |
60-
pip install .[dev]
61+
pip install --editable .[dev]
6162
6263
- name: Test with pytest
6364
id: pytest

0 commit comments

Comments
 (0)