summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-11-26 14:57:38 +0100
committerMS <ms@taler.net>2020-11-26 14:57:38 +0100
commit6e214f0e4038ad15a2cda069c207af9955f1eecb (patch)
tree4f1e4f3120780b7610e6a17ff02f393d76e95b41
parentfd4e42e9329144af0d19432db28145f69d34b4db (diff)
downloadlibeufin-deployment-6e214f0e4038ad15a2cda069c207af9955f1eecb.tar.gz
libeufin-deployment-6e214f0e4038ad15a2cda069c207af9955f1eecb.tar.bz2
libeufin-deployment-6e214f0e4038ad15a2cda069c207af9955f1eecb.zip
Prefer flunkOnFailure (instead of haltOnFailure)
-rw-r--r--buildbot/master.cfg6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 3a12f42..1736c27 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -94,21 +94,21 @@ ALL_FACTORY.addSteps([
name="Unit tests",
description="Running unit tests",
descriptionDone="Unit tests done",
- haltOnFailure=True,
+ flunkOnFailure=True,
command=["make", "check"]
),
ShellCommand(
name="Integration tests",
description="Running integration tests",
descriptionDone="Integration tests done",
- haltOnFailure=True,
+ flunkOnFailure=True,
command=["make", "tests"]
),
ShellCommand(
name="Parsing tests",
description="Running the parsing tests",
descriptionDone="Parsing tests done",
- haltOnFailure=True,
+ flunkOnFailure=True,
command=["make", "parse"]
)
])