Skip to content

Commit 69a0a1e

Browse files
daniel-jones-devJanEbbing
authored andcommitted
ci: Add mypy for static type checking
1 parent 2fe21c0 commit 69a0a1e

File tree

6 files changed

+281
-82
lines changed

6 files changed

+281
-82
lines changed

.gitlab-ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,21 @@ secret_detection:
117117
rules:
118118
- if: $CI_MERGE_REQUEST_ID
119119

120+
.mypy_base:
121+
stage: check
122+
script: poetry run mypy --exclude 'examples/' .
123+
124+
mypy_scheduled:
125+
extends: .mypy_base
126+
rules:
127+
- if: $CI_PIPELINE_SOURCE == "schedule"
128+
retry: 2
129+
130+
mypy_manual:
131+
extends: .mypy_base
132+
rules:
133+
- if: $CI_PIPELINE_SOURCE != "schedule"
134+
120135
# stage: build ----------------------
121136

122137
package:

deepl/http_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import http
88
import platform
99
import random
10-
import requests
10+
import requests # type: ignore
1111
import traceback
1212
import time
1313
from functools import lru_cache

deepl/translator.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import json as json_module
2929
import os
3030
import pathlib
31-
import requests
31+
import requests # type: ignore
3232
import time
3333
from typing import (
3434
Any,
@@ -765,6 +765,8 @@ def translate_document_download(
765765
# TODO: once we drop py3.6 support, replace this with @overload
766766
# annotations in `_api_call` and chained private functions.
767767
# See for example https://stackoverflow.com/a/74070166/4926599
768+
# In addition, drop the type: ignore annotation on the
769+
# `import requests` / `from requests`
768770
assert isinstance(response, requests.Response)
769771

770772
self._raise_for_status(

0 commit comments

Comments
 (0)