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
commita9a87c312ce78ddc6d2904b8099b3389757fbab1 (patch)
tree6f3674e5ff7ef0c35340c2745a88bfad07f04c7b
parent10a38803a0f7aabd115521edd24b607e896727ed (diff)
downloadpython-coveragepy-a9a87c312ce78ddc6d2904b8099b3389757fbab1.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 27a082e..baaa8f0 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)