summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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")