Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
django-modern-rest
django-stubs
1 parent 33e719e commit cf4e5a6Copy full SHA for cf4e5a6
1 file changed
mypy_primer/projects.py
@@ -323,6 +323,16 @@ def get_projects() -> list[Project]:
323
expected_success=("mypy",),
324
cost={"mypy": 6},
325
),
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
+ ),
336
Project(
337
location="https://github.com/dropbox/stone",
338
mypy_cmd="{mypy} {paths}",
0 commit comments