"git@developer.sourcefind.cn:modelzoo/resnet50_tensorflow.git" did not exist on "e1df7597a75b70f13a6f368f9a7c0dadeaf80101"
Commit 81d34ece authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

adds makefile target for pytype

parent f75ee1fd
...@@ -39,3 +39,4 @@ dist/rdma/net_rdma ...@@ -39,3 +39,4 @@ dist/rdma/net_rdma
dist/sockets/net_sockets dist/sockets/net_sockets
trace/process trace/process
mk/local.mk mk/local.mk
.eggs
...@@ -72,7 +72,7 @@ lint-clang-format: ...@@ -72,7 +72,7 @@ lint-clang-format:
$(CLANG_FORMAT) --dry-run --style=file `cat .lint-files` $(CLANG_FORMAT) --dry-run --style=file `cat .lint-files`
lint: lint-cpplint lint-clang-format lint-python lint: lint-cpplint lint-clang-format lint-python
lint-all: lint lint-clang-tidy lint-all: lint lint-clang-tidy typecheck-python
help: help:
@echo "Targets:" @echo "Targets:"
......
...@@ -25,4 +25,7 @@ include mk/subdir_pre.mk ...@@ -25,4 +25,7 @@ include mk/subdir_pre.mk
lint-python: lint-python:
pylint experiments pylint experiments
typecheck-python:
pytype -j 0 --keep-going --exclude "**/ae/*" -- experiments/
include mk/subdir_post.mk include mk/subdir_post.mk
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