Skip to content

Commit

Permalink
ci: fix test coverage to only include source files
Browse files Browse the repository at this point in the history
  • Loading branch information
matmoncon committed Jan 22, 2024
1 parent ef2a086 commit 7b095cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
poetry add pydantic@${{ matrix.pydantic-version }}
- name: Run tests
run: poetry run pytest tests --asyncio-mode=auto --cov -W ignore::DeprecationWarning
run: poetry run pytest tests --asyncio-mode=auto --cov=pyneo4j_ogm -W ignore::DeprecationWarning

release:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"label": "Pytest",
"type": "shell",
"command": "poetry run pytest tests --asyncio-mode=auto --cov -W ignore::DeprecationWarning",
"command": "poetry run pytest tests --asyncio-mode=auto --cov=pyneo4j_ogm -W ignore::DeprecationWarning",
"group": {
"kind": "test",
"isDefault": true
Expand Down

0 comments on commit 7b095cc

Please sign in to comment.