summaryrefslogtreecommitdiff
path: root/coverage/test_helpers.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-04-25 09:30:35 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-04-25 09:30:35 -0400
commit087da3175829f5fdb0db0c372872b905304cda55 (patch)
treeaf8608326c6a69f2f87337b6eb3d96575c3b6f47 /coverage/test_helpers.py
parentd97d176b20fa88a1a23597ccbad1f8347f8073c8 (diff)
downloadpython-coveragepy-git-087da3175829f5fdb0db0c372872b905304cda55.tar.gz
Not sure how I missed this UndefinedLocal.... :(
Diffstat (limited to 'coverage/test_helpers.py')
-rw-r--r--coverage/test_helpers.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/coverage/test_helpers.py b/coverage/test_helpers.py
index 3f058b1d..278b0a8a 100644
--- a/coverage/test_helpers.py
+++ b/coverage/test_helpers.py
@@ -257,6 +257,7 @@ class TempDirMixin(SysPathAwareMixin, ModuleAwareMixin, TestCase):
def report_on_class_behavior(cls):
"""Called at process exit to report on class behavior."""
for test_class, behavior in cls.class_behaviors.items():
+ bad = ""
if behavior.tests <= behavior.skipped:
bad = ""
elif behavior.temp_dir and behavior.tests_making_files == 0:
@@ -264,8 +265,6 @@ class TempDirMixin(SysPathAwareMixin, ModuleAwareMixin, TestCase):
bad = "Inefficient"
elif not behavior.temp_dir and behavior.tests_making_files > 0:
bad = "Unsafe"
- else:
- bad = ""
if bad:
if behavior.temp_dir: