Skip to content
Snippets Groups Projects
Unverified Commit 56c4e9a7 authored by Nicki Křížek's avatar Nicki Křížek
Browse files

Remove mypy check

Unfortunately, the mypy check has been rotting for years now. Let's not
pretend like this check is maintained and remove the associated code.
parent fb2e291f
No related branches found
No related tags found
1 merge request!122Improve handling of ConnectionError
Pipeline #135109 failed
......@@ -11,11 +11,6 @@ stages:
- linux
- amd64
test:mypy:
<<: *debian
script:
- ./ci/mypy-run.sh
test:flake8:
<<: *debian
script:
......
#!/usr/bin/env bash
set -e
# Find Python scripts
FILES=$(find . \
-path './ci' -prune -o \
-path './.git' -prune -o \
-name '*.py' -print)
python3 -m mypy --install-types --non-interactive --ignore-missing-imports ${FILES}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment