diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-22 06:32:32 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-22 06:32:32 -0500 |
commit | f2835d6c2be09630702a016958624b58803f6f60 (patch) | |
tree | 5a79ab7fe5319598d255e61595ae1f7246ed6569 | |
parent | 3b483e7b41c776f0b702cdec9a912945e1301021 (diff) | |
download | python-coveragepy-git-f2835d6c2be09630702a016958624b58803f6f60.tar.gz |
Was using the wrong pragma
-rw-r--r-- | tests/goldtest.py | 2 |
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) |