commit 0df05ca36aeb252a416c48d4a0537651be5a0582
parent 3a11629a8723316f79325690d276215e8227cd6e
Author: ng0 <ng0@n0.is>
Date: Fri, 18 Oct 2019 14:28:43 +0000
preserve-status arg for timeout
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -264,7 +264,7 @@ WALLET_FACTORY.addStep(
name="test",
description="Running wallet tests",
descriptionDone="Test correctly run",
- command=["timeout", "5m", "./$HOME/bin/taler-wallet-cli", "integrationtest", "--verbose"],
+ command=["timeout", "--preserve-status", "5m", "./$HOME/bin/taler-wallet-cli", "integrationtest", "--verbose"],
workdir="build/",
)
)
@@ -273,7 +273,7 @@ WALLET_FACTORY.addStep(
name="test-withdraw",
description="Running wallet withdraw tests",
descriptionDone="Test correctly run",
- command=["timeout", "5m", "./$HOME/bin/taler-wallet-cli", "integrationtest", "--verbose", "-w", "TESTKUDOS:10"],
+ command=["timeout", "--preserve-status", "5m", "./$HOME/bin/taler-wallet-cli", "integrationtest", "--verbose", "-w", "TESTKUDOS:10"],
workdir="build/",
)
)
@@ -282,7 +282,7 @@ WALLET_FACTORY.addStep(
name="test-spend",
description="Running wallet spend tests",
descriptionDone="Test correctly run",
- command=["timeout", "5m", "./$HOME/bin/taler-wallet-cli", "integrationtest", "--verbose", "-s", "TESTKUDOS:4"],
+ command=["timeout", "--preserve-status", "5m", "./$HOME/bin/taler-wallet-cli", "integrationtest", "--verbose", "-s", "TESTKUDOS:4"],
workdir="build/",
)
)