Skip to content

Commit

Permalink
pyproject(mypy) Ignore pytest_codspeed
Browse files Browse the repository at this point in the history
tests/sync/test_git.py:11: error: Skipping analyzing "pytest_codspeed.plugin": module is installed, but missing library stubs or py.typed marker  [import-untyped]
tests/sync/test_git.py:11: note: See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-imports
  • Loading branch information
tony committed Oct 12, 2024
1 parent 2998c7a commit f649e7f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ files = [
"tests",
]

[[tool.mypy.overrides]]
module = "pytest_codspeed.plugin"
ignore_missing_imports = true

[tool.coverage.run]
branch = true
parallel = true
Expand Down

0 comments on commit f649e7f

Please sign in to comment.