[pypy-commit] buildbot issue-1759: do not fail build if no old files found

mattip noreply at buildbot.pypy.org
Thu Feb 12 21:12:13 CET 2015


Author: mattip <matti.picus at gmail.com>
Branch: issue-1759
Changeset: r932:bec7d690f6ad
Date: 2015-02-12 22:02 +0200
http://bitbucket.org/pypy/buildbot/changeset/bec7d690f6ad/

Log:	do not fail build if no old files found

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -403,6 +403,8 @@
     factory.addStep(PytestCmd(
         description="cleanout old test files",
         command = command,
+        flunkOnFailure=False,
+        haltOnFailure=False,
         ))
 
     if app_tests:
@@ -500,6 +502,8 @@
         self.addStep(PytestCmd(
             description="cleanout old test files",
             command = command,
+            flunkOnFailure=False,
+            haltOnFailure=False,
             ))
 
         self.addStep(PytestCmd(


More information about the pypy-commit mailing list