summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildbot/master.cfg20
1 files changed, 19 insertions, 1 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 1213cc3..637bffc 100644
--- 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/",
)
)