From 26821ed8e6ea20925ab859bf5e06607f0861bb4c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 24 Oct 2017 07:17:11 -0400 Subject: Add the latest warning to the docs, and give them consistent punctuation --- doc/cmd.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/cmd.rst b/doc/cmd.rst index dc70353..8dbe56e 100644 --- a/doc/cmd.rst +++ b/doc/cmd.rst @@ -165,12 +165,18 @@ could affect the measurement process. The possible warnings include: This could be because you asked to measure only modules that never ran, or for other reasons. -* "Module XXX was previously imported, but not measured. (module-not-measured)" +* "Module XXX was previously imported, but not measured (module-not-measured)" You asked coverage.py to measure module XXX, but it had already been imported when coverage started. This meant coverage.py couldn't monitor its execution. +* "--include is ignored because --source is set (include-ignored)" + + Both ``--include`` and ``--source`` were specified while running code. Both + are meant to focus measurement on a particular part of your source code, so + ``--include`` is ignored in favor of ``--source``. + Individual warnings can be disabled with the `disable_warnings `_ configuration setting. To silence "No data was collected," add this to your .coveragerc file:: -- cgit v1.2.1