Skip to content

Commit eff3967

Browse files
try to fix coverage
1 parent 54ed453 commit eff3967

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ fail_under = 100
108108

109109
[tool.coverage.run]
110110
omit = [
111+
"src/mcp_django_shell/management/commands/mcp_shell.py",
111112
"src/mcp_django_shell/migrations/*",
112113
"tests/*"
113114
]

src/mcp_django_shell/management/commands/mcp_shell.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# pragma: no cover
21
from __future__ import annotations
32

43
from typing import Any
@@ -10,4 +9,4 @@
109

1110
class Command(BaseCommand):
1211
def handle(self, *args: Any, **options: Any):
13-
mcp.run() # pragma: no cover
12+
mcp.run()

0 commit comments

Comments
 (0)