summaryrefslogtreecommitdiff
path: root/tests/test_testing.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-30 10:52:18 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-30 10:52:18 -0400
commit3857dc54ab75099bebaf1ba8f89494784edec5ee (patch)
treebe15176a6a3e98435efb9f574257a991ac035cb6 /tests/test_testing.py
parent6489df5a854f1616b8456049fcc3be0493743b3b (diff)
downloadpython-coveragepy-git-3857dc54ab75099bebaf1ba8f89494784edec5ee.tar.gz
Pragmas for metacoverage
Diffstat (limited to 'tests/test_testing.py')
-rw-r--r--tests/test_testing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_testing.py b/tests/test_testing.py
index 0cb6a860..54ab894d 100644
--- a/tests/test_testing.py
+++ b/tests/test_testing.py
@@ -72,7 +72,7 @@ class EnvironmentAwareMixinTest(EnvironmentAwareMixin, TestCase):
# The before state.
# Not sure what environment variables are available in all of our
# different testing environments, so try a bunch.
- for envvar in ["HOME", "HOMEDIR", "USER", "SYSTEMDRIVE", "TEMP"]:
+ for envvar in ["HOME", "HOMEDIR", "USER", "SYSTEMDRIVE", "TEMP"]: # pragma: part covered
if envvar in os.environ:
original_text = os.environ[envvar]
new_text = "Some Strange Text"