From 0145c9eec7ae2821d6bbec7d6f4a91608734e3cc Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Sat, 6 Jun 2009 01:05:44 -0400 Subject: Altered HtmlOutput nose plugin to slow skipped tests. --- markdown/tests/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/tests/plugins.py b/markdown/tests/plugins.py index ce06c3f..acd1eaf 100644 --- a/markdown/tests/plugins.py +++ b/markdown/tests/plugins.py @@ -75,7 +75,7 @@ or "")) 'errors=%d' % len(result.errors)]) for cls in result.errorClasses.keys(): storage, label, isfail = result.errorClasses[cls] - if isfail: + if len(storage): self.html.append(' %ss=%d' % (label, len(storage))) self.html.append(')') else: -- cgit v1.2.3