Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cf4e5a6

Browse files
authored
Add django-modern-rest which uses django-stubs
1 parent 33e719e commit cf4e5a6

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

mypy_primer/projects.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,16 @@ def get_projects() -> list[Project]:
323323
expected_success=("mypy",),
324324
cost={"mypy": 6},
325325
),
326+
Project(
327+
location="https://github.com/wemake-services/django-modern-rest",
328+
mypy_cmd="{mypy} {paths}",
329+
pyright_cmd="{pyright}",
330+
paths=["django_modern_rest"],
331+
deps=["django-stubs", "pydantic", "msgspec"],
332+
needs_mypy_plugins=True, # we want to test `django-stubs` plugin
333+
expected_success=("mypy", "pyright"),
334+
cost={"mypy": 6, "pyright": 6},
335+
),
326336
Project(
327337
location="https://github.com/dropbox/stone",
328338
mypy_cmd="{mypy} {paths}",

0 commit comments

Comments
 (0)