Skip to content

Commit 693de03

Browse files
committed
Fix CoverageWarning
1 parent 8ea51e4 commit 693de03

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ jobs:
3333
- run: poetry run pip install -U ${{ matrix.qt }}
3434

3535
- run: >-
36-
poetry run pytest --color=yes --cov
37-
--cov-report=term-missing --cov-report=xml
36+
poetry run pytest tests --color=yes
37+
--cov=qdarktheme
38+
--cov=tests
39+
--cov-report=term-missing
40+
--cov-report=xml
3841
3942
- uses: codecov/codecov-action@v3
4043
with:
@@ -66,8 +69,11 @@ jobs:
6669
poetry-install--only: github-actions,test,main
6770

6871
- run: >-
69-
poetry run pytest --color=yes --cov
70-
--cov-report=term-missing --cov-report=xml
72+
poetry run pytest --color=yes
73+
--cov=qdarktheme
74+
--cov=tests
75+
--cov-report=term-missing
76+
--cov-report=xml
7177
--ignore=tests/test_widget_gallery.py
7278
--ignore=tests/test_qdarktheme_with_qt.py
7379
-p no:pytest-qt

0 commit comments

Comments
 (0)