From 12bf34ae65b7d741e45bd9bc000eb038de25fb8c Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Mon, 2 Apr 2018 17:53:47 +0000 Subject: [PATCH] Run tests verbosely. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 6f8bf4d5..3c834f7d 100644 --- a/Makefile +++ b/Makefile @@ -18,16 +18,16 @@ lint: ## Lint the Python source code. .PHONY: test test: ## Run the test suite. - $(PYTHON) -m tests --full + $(PYTHON) -m tests -v --full .PHONY: test-quick test-quick: - $(PYTHON) -m tests --quick + $(PYTHON) -m tests -v --quick .PHONY: coverage coverage: ## Check line coverage. #$(PYTHON) -m coverage run --include 'ptvsd/*.py' --omit 'ptvsd/pydevd/*.py' -m tests - $(PYTHON) -m tests --full --coverage + $(PYTHON) -m tests -v --full --coverage .PHONY: check-schemafile check-schemafile: ## Validate the vendored DAP schema file. @@ -42,11 +42,11 @@ ci-lint: depends lint .PHONY: ci-test ci-test: depends - $(PYTHON) -m tests --full --no-network + $(PYTHON) -m tests -v --full --no-network .PHONY: ci-coverage ci-coverage: depends - $(PYTHON) -m tests --full --coverage --no-network + $(PYTHON) -m tests -v --full --coverage --no-network .PHONY: ci-check-schemafile ci-check-schemafile: check-schemafile