We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
mypy --install-types
1 parent 16396ba commit 4064df3Copy full SHA for 4064df3
.github/workflows/django.yml
@@ -10,7 +10,9 @@ jobs:
10
- name: Run ruff
11
run: docker compose run django ruff check styleguide_example/
12
- name: Run mypy
13
- run: docker compose run django mypy --config mypy.ini styleguide_example/
+ run: |
14
+ docker compose run django mypy --config mypy.ini --install-types
15
+ docker compose run django mypy --config mypy.ini styleguide_example/
16
- name: Run tests
17
run: docker compose run django py.test
18
@@ -49,7 +51,9 @@ jobs:
49
51
50
52
run: ruff check .
53
- name: Type check
- run: mypy --config mypy.ini styleguide_example/
54
55
+ mypy --config mypy.ini --install-types
56
+ mypy --config mypy.ini styleguide_example/
57
58
run: pytest
59
0 commit comments