summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-11-22 06:32:32 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-11-22 06:32:32 -0500
commitf2835d6c2be09630702a016958624b58803f6f60 (patch)
tree5a79ab7fe5319598d255e61595ae1f7246ed6569
parent3b483e7b41c776f0b702cdec9a912945e1301021 (diff)
downloadpython-coveragepy-git-f2835d6c2be09630702a016958624b58803f6f60.tar.gz
Was using the wrong pragma
-rw-r--r--tests/goldtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/goldtest.py b/tests/goldtest.py
index 27a082ee..baaa8f01 100644
--- a/tests/goldtest.py
+++ b/tests/goldtest.py
@@ -38,5 +38,5 @@ class CoverageGoldTest(CoverageTest):
# beginning of the test.
clean(the_dir)
- if not os.environ.get("COVERAGE_KEEP_OUTPUT"): # pragma: partial
+ if not os.environ.get("COVERAGE_KEEP_OUTPUT"): # pragma: part covered
self.addCleanup(clean, the_dir)