Add "make check-dap-schema".

This commit is contained in:
Eric Snow 2018-03-21 20:13:53 +00:00
parent 7a5eb10549
commit d65c4f793a
2 changed files with 5 additions and 1 deletions

View file

@ -27,6 +27,10 @@ test-quick:
ci-test:
$(PYTHON) -m tests --full --no-network
.PHONY: check-dap-schema
check-dap-schema:
$(PYTHON) -m debugger_protocol.schema check
.PHONY: coverage
coverage: ## Check line coverage.
#$(PYTHON) -m coverage run --include 'ptvsd/*.py' --omit 'ptvsd/pydevd/*.py' -m tests

View file

@ -14,8 +14,8 @@ def convert_argv(argv):
help = False
quick = False
network = True
lint = False
runtests = True
lint = False
args = []
modules = set()
for arg in argv: