summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-11-10 07:23:12 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-11-10 07:23:12 -0500
commit7cbd4e94bfb8eac5dbeb418bc5b75cffb19db227 (patch)
treed9feaaabba2c6926c6241956baa60f0058c5c60e
parent39f8ce22f2a6fa9d19f45211b5981ac900b8154b (diff)
downloadpython-coveragepy-git-7cbd4e94bfb8eac5dbeb418bc5b75cffb19db227.tar.gz
Details of context tracing
-rw-r--r--doc/contexts.rst4
-rw-r--r--igor.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/contexts.rst b/doc/contexts.rst
index f949ed6f..89341f4a 100644
--- a/doc/contexts.rst
+++ b/doc/contexts.rst
@@ -89,8 +89,8 @@ report will be limited to the contexts that match one of those patterns.
The ``coverage html`` command also has ``--show-contexts``. If set, the HTML
report will include an annotation on each covered line indicating the number of
-contexts that executed the line. Hovering over the annotation displays a list
-of the contexts.
+contexts that executed the line. Clicking the annotation displays a list of
+the contexts.
Raw data
diff --git a/igor.py b/igor.py
index e86c5ff9..0c550dfb 100644
--- a/igor.py
+++ b/igor.py
@@ -75,7 +75,7 @@ def should_skip(tracer):
"""Is there a reason to skip these tests?"""
if tracer == "py":
# $set_env.py: COVERAGE_NO_PYTRACER - Don't run the tests under the Python tracer.
- skipper = os.environ.get("COVERAGE_NO_PYTRACER") or os.environ.get("COVERAGE_CONTEXT")
+ skipper = os.environ.get("COVERAGE_NO_PYTRACER")
else:
# $set_env.py: COVERAGE_NO_CTRACER - Don't run the tests under the C tracer.
skipper = os.environ.get("COVERAGE_NO_CTRACER")