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

Skip to content

Commit 1dcfa19

Browse files
authored
Add django-test-migrations which uses django-stubs with a plugin (#201)
Link: https://github.com/wemake-services/django-test-migrations I want to add more packages that actually use `django-stubs` with the plugin, so it would be helpful for us during PRs :) Refs typeddjango/django-stubs#1362
1 parent 2da076f commit 1dcfa19

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
@@ -313,6 +313,16 @@ def get_projects() -> list[Project]:
313313
expected_success=("mypy",),
314314
cost={"pyright": 60, "mypy": 173},
315315
),
316+
Project(
317+
location="https://github.com/wemake-services/django-test-migrations",
318+
mypy_cmd="{mypy} {paths}",
319+
pyright_cmd=None,
320+
paths=["django_test_migrations"],
321+
deps=["django-stubs"],
322+
needs_mypy_plugins=True, # we want to test `django-stubs` plugin
323+
expected_success=("mypy",),
324+
cost={"mypy": 6},
325+
),
316326
Project(
317327
location="https://github.com/dropbox/stone",
318328
mypy_cmd="{mypy} {paths}",

0 commit comments

Comments
 (0)