diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-09 09:41:28 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-09 09:41:28 -0500 |
commit | 674fbf7bfd2c60835cdc2213f2d901b97b304a8d (patch) | |
tree | ea331bc33c99f5dda81ee8b5eaf27f8efa204bd5 /coverage/test_helpers.py | |
parent | e6293b0f0d8a029489a5571f39f975021c2249e8 (diff) | |
download | python-coveragepy-674fbf7bfd2c60835cdc2213f2d901b97b304a8d.tar.gz |
Plugin support is now only in the CTracer, not in the PyTracer.
Diffstat (limited to 'coverage/test_helpers.py')
-rw-r--r-- | coverage/test_helpers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/test_helpers.py b/coverage/test_helpers.py index 65d9977..e9ad377 100644 --- a/coverage/test_helpers.py +++ b/coverage/test_helpers.py @@ -249,7 +249,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(): - if behavior.tests == behavior.skipped: + if behavior.tests <= behavior.skipped: bad = "" elif behavior.temp_dir and behavior.tests_making_files == 0: bad = "Inefficient" |