Author: mattip <[email protected]>
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(
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to