taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 3a11629a8723316f79325690d276215e8227cd6e
parent f5bd92431f882c4c417dfc3aa54bf0444e5e63f7
Author: ng0 <ng0@n0.is>
Date:   Fri, 18 Oct 2019 11:22:39 +0000

use timeout(1) for now

Diffstat:
Mbuildbot/master.cfg | 20+++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -264,7 +264,25 @@ WALLET_FACTORY.addStep( name="test", description="Running wallet tests", descriptionDone="Test correctly run", - command=["./$HOME/bin/taler-wallet-cli", "integrationtest", "--verbose"], + command=["timeout", "5m", "./$HOME/bin/taler-wallet-cli", "integrationtest", "--verbose"], + workdir="build/", + ) +) +WALLET_FACTORY.addStep( + ShellCommand( + 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"], + workdir="build/", + ) +) +WALLET_FACTORY.addStep( + ShellCommand( + 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"], workdir="build/", ) )