From 058cb7c02c96b1d37eaaa2019727117a616ebac7 Mon Sep 17 00:00:00 2001 From: Peter Deme Date: Thu, 21 Apr 2022 10:30:53 +0200 Subject: [PATCH] ci: print test coverage to console (#112) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 82c25c1..2ee8c13 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ lint-fix: isort stream_chat test: ## Run tests - STREAM_KEY=$(STREAM_KEY) STREAM_SECRET=$(STREAM_SECRET) pytest --cov=stream_chat --cov-report=xml stream_chat/tests + STREAM_KEY=$(STREAM_KEY) STREAM_SECRET=$(STREAM_SECRET) pytest --cov=stream_chat stream_chat/tests check: lint test ## Run linters + tests