commit a1cab9f28929f6fbb9277c37b6840102beb64424
parent 07c704d331e340032f343e19b43f401239c830f5
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Thu, 29 Jun 2017 10:02:32 +0200
fix invocation of wallet tests
Diffstat:
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -96,7 +96,13 @@ wallet_factory.addStep(Git(repourl='git://git.taler.net/wallet-webex.git',
wallet_factory.addStep(ShellCommand(name="configuration",
description="Running configure script",
descriptionDone="Correctly configured",
- command=["./configure && make check"],
+ command=["./configure"],
+ workdir="build/"))
+
+wallet_factory.addStep(ShellCommand(name="test",
+ description="Running wallet tests",
+ descriptionDone="Test correctly run",
+ command=["make", "check"],
workdir="build/"))
lcov_factory = util.BuildFactory()