aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2014-09-04 00:31:38 +0200
committerArmin Rigo <arigo@tunes.org>2014-09-04 00:31:38 +0200
commit3316c22a15c319ed3d716c1ab78144fcc08ed983 (patch)
tree6c9b11f50493c187ee7b191e553cdd77c601e0f4 /_pytest
parentoups (diff)
downloadpypy-3316c22a15c319ed3d716c1ab78144fcc08ed983.tar.gz
pypy-3316c22a15c319ed3d716c1ab78144fcc08ed983.tar.bz2
pypy-3316c22a15c319ed3d716c1ab78144fcc08ed983.zip
Oups, it seems the buildbots use too much memory with this setting?
Diffstat (limited to '_pytest')
-rw-r--r--_pytest/resultlog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/_pytest/resultlog.py b/_pytest/resultlog.py
index 6ffd4d23a5..8cf58a1b67 100644
--- a/_pytest/resultlog.py
+++ b/_pytest/resultlog.py
@@ -57,7 +57,7 @@ class ResultLog(object):
_safeprint("%s %s" % (lettercode, testpath), file=self.logfile)
for line in longrepr.splitlines():
_safeprint(" %s" % line, file=self.logfile)
- if sections is not None:
+ if 0 and sections is not None: # XXX XXX USES TOO MUCH MEMORY??
for title, content in sections:
_safeprint(" ---------- %s ----------" % (title,),
file=self.logfile)