Improved mypy checks

This commit is contained in:
Cédric Bonhomme 2019-12-15 21:51:39 +01:00
parent c0abda31bc
commit a61a7916a3
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
2 changed files with 15 additions and 11 deletions

View file

@ -1,18 +1,21 @@
import subprocess
import sys
modules = ["stegano/tools.py",
"stegano/lsb/lsb.py",
"stegano/lsbset/lsbset.py",
"stegano/lsbset/generators.py",
"stegano/red/red.py",
"stegano/exifHeader/exifHeader.py",
"stegano/steganalysis/parity.py",
"stegano/steganalysis/statistics.py"]
modules = ['stegano/tools.py',
'stegano/lsb/lsb.py',
'stegano/lsbset/lsbset.py',
'stegano/lsbset/generators.py',
'stegano/red/red.py',
'stegano/exifHeader/exifHeader.py',
'stegano/steganalysis/parity.py',
'stegano/steganalysis/statistics.py']
exit_codes = []
for module in modules:
rc = subprocess.call(["mypy", "--ignore-missing-imports",
"--follow-imports", "skip", module])
rc = subprocess.call(['mypy', '--ignore-missing-imports',
'--check-untyped-defs',
'--follow-imports', 'skip', module],
)
exit_codes.append(rc)
sys.exit(max(exit_codes))