summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-10-18 11:22:39 +0000
committerng0 <ng0@n0.is>2019-10-18 11:22:39 +0000
commit3a11629a8723316f79325690d276215e8227cd6e (patch)
treea6b3a69f589a6554b673eb066784bc81ec4c97dd
parentf5bd92431f882c4c417dfc3aa54bf0444e5e63f7 (diff)
downloaddeployment-3a11629a8723316f79325690d276215e8227cd6e.tar.gz
deployment-3a11629a8723316f79325690d276215e8227cd6e.tar.bz2
deployment-3a11629a8723316f79325690d276215e8227cd6e.zip
use timeout(1) for now
-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/",
)
)