Invoke pytest directly from Travis makefile, instead of going via setup.py.

Increase test verbosity on Travis.
This commit is contained in:
Pavel Minaev 2018-11-07 21:50:47 -08:00
parent c0f1bf9ca8
commit e1d06cf592

View file

@ -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