mirror of https://github.com/zulip/zulip.git
mypy: Move cache-dir to config file.
This commit is contained in:
parent
724e849e2b
commit
6b1e76c1b1
1
mypy.ini
1
mypy.ini
|
@ -10,6 +10,7 @@ no_implicit_optional = True
|
||||||
|
|
||||||
scripts_are_modules = True
|
scripts_are_modules = True
|
||||||
show_traceback = True
|
show_traceback = True
|
||||||
|
cache_dir = var/mypy-cache
|
||||||
|
|
||||||
warn_no_return = True
|
warn_no_return = True
|
||||||
|
|
||||||
|
|
|
@ -83,7 +83,7 @@ if not python_files and not pyi_files:
|
||||||
print("There are no files to run mypy on.")
|
print("There are no files to run mypy on.")
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
extra_args = ["--cache-dir=var/mypy-cache"]
|
extra_args = []
|
||||||
if args.linecoverage_report:
|
if args.linecoverage_report:
|
||||||
extra_args.append("--linecoverage-report")
|
extra_args.append("--linecoverage-report")
|
||||||
extra_args.append("var/linecoverage-report")
|
extra_args.append("var/linecoverage-report")
|
||||||
|
|
Loading…
Reference in New Issue