more CI testing

This commit is contained in:
Eric Froemling 2019-10-06 08:49:17 -07:00
parent 7de1b17305
commit c36d5f9a21

View File

@ -486,7 +486,7 @@ def runmypy(filenames: List[str], full: bool = False,
'python3.7', '-m', 'mypy', '--pretty', '--config-file', '.mypy.ini'
] + filenames
if full:
args.insert(1, '--no-incremental')
args.insert(args.index('mypy') + 1, '--no-incremental')
subprocess.run(args, check=check)