diff options
author | mathieui <mathieui@mathieui.net> | 2021-03-26 18:12:54 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-04-02 17:44:36 +0200 |
commit | 0ff5483f0034a4240e897a8a13974d16b5d5d0a4 (patch) | |
tree | d1351a92e95b5b7af1ba3977d85e55843b9c4456 | |
parent | 50b8a7afe1b6aaa882b9175b9b31444ed3c8da10 (diff) | |
download | poezio-0ff5483f0034a4240e897a8a13974d16b5d5d0a4.tar.gz poezio-0ff5483f0034a4240e897a8a13974d16b5d5d0a4.tar.bz2 poezio-0ff5483f0034a4240e897a8a13974d16b5d5d0a4.tar.xz poezio-0ff5483f0034a4240e897a8a13974d16b5d5d0a4.zip |
ci: install custom mypy and typecheck plugins too
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 22638d6d..a4637246 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -93,7 +93,8 @@ pylint-plugins: mypyc: stage: lint image: python:3 - allow_failure: true script: - - pip3 install mypy - - mypyc --ignore-missing-imports ./poezio + - pip3 install https://lab.louiz.org/mathieui/poezio/-/raw/mypy-custom-build/mypy-0.820+dev.ceca581e385f5438bcb7d7c3e8f94aadb7085f77-py3-none-any.whl + - pip install "typed_ast>=1.4.0,<1.5.0" types-pkg_resources + - mypy --ignore-missing-imports ./poezio + - mypy --ignore-missing-imports ./plugins |