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.
1 parent 2b69062 commit cec955dCopy full SHA for cec955d
.github/workflows/build.yml
@@ -19,11 +19,12 @@ jobs:
19
- name: Install dependencies
20
run: |
21
python -m pip install --upgrade pip wheel setuptools
22
- pip install -q ruff
+ pip install -q ruff mypy
23
- name: Lint
24
25
ruff check .
26
ruff format --check .
27
+ mypy .
28
- name: Test
29
30
pip install wheel
pyproject.toml
@@ -15,3 +15,13 @@ line-ending = "auto"
15
[tool.ruff.lint]
16
extend-select = ["I"]
17
18
+[tool.mypy]
+warn_unused_configs = true
+
+[[tool.mypy.overrides]]
+module = "django.*"
+ignore_missing_imports = true
+module = "httptest.*"
0 commit comments