Commit fc3f0602 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

add Makefile target to typecheck experiments/pyexps/ae/

parent 6acec742
...@@ -26,11 +26,15 @@ lint-python: ...@@ -26,11 +26,15 @@ lint-python:
pylint -d missing-module-docstring,missing-class-docstring experiments/ results/ pylint -d missing-module-docstring,missing-class-docstring experiments/ results/
typecheck-python: typecheck-python:
$(MAKE) typecheck-experiments typecheck-results $(MAKE) typecheck-experiments typecheck-results typecheck-experiments-ae
typecheck-experiments: typecheck-experiments:
pytype -j 0 --keep-going --exclude "**/ae/*" -- experiments/ pytype -j 0 --keep-going --exclude "**/ae/*" -- experiments/
typecheck-experiments-ae:
pytype -j 0 --keep-going experiments/pyexps/ae/
typecheck-results: typecheck-results:
pytype -j 0 --keep-going results/ pytype -j 0 --keep-going results/
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment