From f36ff20898e14dc2b66af9af307784d8bf2c3942 Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Mon, 13 Mar 2017 20:53:04 +0100 Subject: [PATCH] Update Coverage Command This command will automatically check the coverage of the whole project on not only the modules called by the tests. Signed-off-by: Lars Kiesow --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4d368fd..50c88d9 100644 --- a/Makefile +++ b/Makefile @@ -49,5 +49,5 @@ publish: twine upload dist/* test: - coverage run --omit='*/lib/*,tests/*' -m unittest discover -s tests + coverage run --source=feedgen -m unittest discover -s tests flake8 $$(find setup.py tests feedgen -name '*.py')