From e1d06cf5925451e4fefcb569aca16b1aed5309bb Mon Sep 17 00:00:00 2001 From: Pavel Minaev Date: Wed, 7 Nov 2018 21:50:47 -0800 Subject: [PATCH] Invoke pytest directly from Travis makefile, instead of going via setup.py. Increase test verbosity on Travis. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f20be6c3..fa3f7948 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ ci-lint: depends lint ci-test: depends # For now we use --quickpy2. $(PYTHON) -m tests -v --full --no-network --quick-py2 - $(PYTHON) setup.py test + $(PYTHON) -m pytest -vv .PHONY: ci-coverage ci-coverage: depends