From 5f335f063449a359d855546fc3d439f24f84d466 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 9 Feb 2015 09:41:28 -0500 Subject: Plugin support is now only in the CTracer, not in the PyTracer. --- coverage/test_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/test_helpers.py') 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" -- cgit v1.2.1