[pypy-svn] r17013 - pypy/release/0.7.x/pypy/tool/pytest

xoraxax at codespeak.net xoraxax at codespeak.net
Sun Aug 28 18:16:42 CEST 2005


Author: xoraxax
Date: Sun Aug 28 18:16:42 2005
New Revision: 17013

Modified:
   pypy/release/0.7.x/pypy/tool/pytest/htmlreport.py
Log:
Because the test summary is used for core and non-core tests, just say "tests compliancy" instead of "core tests compliancy".

Modified: pypy/release/0.7.x/pypy/tool/pytest/htmlreport.py
==============================================================================
--- pypy/release/0.7.x/pypy/tool/pytest/htmlreport.py	(original)
+++ pypy/release/0.7.x/pypy/tool/pytest/htmlreport.py	Sun Aug 28 18:16:42 2005
@@ -128,7 +128,7 @@
             return html.tr(*[html.td(arg) for arg in args])
 
         sum_passed = sum([x.ratio_of_passed() for x in tests])
-        t.append(row(html.b("core tests compliancy"), 
+        t.append(row(html.b("tests compliancy"), 
                      html.b("%.2f%%" % (sum_passed/sum100,))))
 
         t.append(row("testmodules passed completely", "%.2f%%" % (ok/sum100)))



More information about the Pypy-commit mailing list