From b1022a4fe462eddf364d4503f285ececaeeb82b4 Mon Sep 17 00:00:00 2001 From: Lee Clemens Date: Tue, 7 Jul 2015 20:03:34 -0400 Subject: [PATCH] DOC: Use coverage report and optionally coverage html --- DEVELOP | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DEVELOP b/DEVELOP index b71f5274..bb7de5c8 100644 --- a/DEVELOP +++ b/DEVELOP @@ -56,9 +56,12 @@ following (note: on Debian-based systems, the script is called `python-coverage`):: coverage run bin/fail2ban-testcases + coverage report + +Optionally: coverage html -Then look at htmlcov/index.html and see how much coverage your test cases +And then browse htmlcov/index.html and see how much coverage your test cases exert over the code base. Full coverage is a good thing however it may not be complete. Try to ensure tests cover as many independent paths through the code.