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 | 5f335f063449a359d855546fc3d439f24f84d466 (patch) | |
tree | b2b8917a96c622dfa53a4795d38637797b24c4c8 /coverage/test_helpers.py | |
parent | b681d98fbd7b880bfaa670429db6f445f3a5fbd0 (diff) | |
download | python-coveragepy-git-5f335f063449a359d855546fc3d439f24f84d466.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 65d99779..e9ad377a 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" |