[pypy-commit] pyrepl py3ksupport: verbose test events by default

RonnyPfannschmidt noreply at buildbot.pypy.org
Wed Oct 19 10:44:48 CEST 2011


Author: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
Branch: py3ksupport
Changeset: r135:f589811464d5
Date: 2011-10-18 12:26 +0200
http://bitbucket.org/pypy/pyrepl/changeset/f589811464d5/

Log:	verbose test events by default

diff --git a/testing/infrastructure.py b/testing/infrastructure.py
--- a/testing/infrastructure.py
+++ b/testing/infrastructure.py
@@ -61,7 +61,7 @@
 
 def read_spec(test_spec, reader_class=TestReader):
     # remember to finish your test_spec with 'accept' or similar!
-    con = TestConsole(test_spec)
+    con = TestConsole(test_spec, verbose=True)
     reader = reader_class(con)
     reader.readline()
 


More information about the pypy-commit mailing list