From 080e181a8cc21b8e555fa96eaa54762eb2a76c8e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 23 Jul 2015 21:22:30 -0400 Subject: Refer to the project consistenly as coverage.py. #275 --- igor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'igor.py') diff --git a/igor.py b/igor.py index 641d0b80..112621d6 100644 --- a/igor.py +++ b/igor.py @@ -105,9 +105,9 @@ def run_tests_with_coverage(tracer, *nose_args): suffix = "%s_%s_%s" % (version, tracer, socket.gethostname()) cov = coverage.coverage(config_file="metacov.ini", data_suffix=suffix) - # Cheap trick: the coverage code itself is excluded from measurement, but - # if we clobber the cover_prefix in the coverage object, we can defeat the - # self-detection. + # Cheap trick: the coverage.py code itself is excluded from measurement, + # but if we clobber the cover_prefix in the coverage object, we can defeat + # the self-detection. cov.cover_prefix = "Please measure coverage.py!" cov._warn_unimported_source = False cov.erase() -- cgit v1.2.1