summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-11-16 17:52:34 +0100
committerMS <ms@taler.net>2020-11-16 17:52:34 +0100
commit30b190fa849ddc97684b348659e7cca56ca5b185 (patch)
treebe14ab5c13e84abad3e11b2dae3937cfd85af51e
parentb23f8048fbfb990a22290b574155197fb31a3162 (diff)
downloadlibeufin-deployment-30b190fa849ddc97684b348659e7cca56ca5b185.tar.gz
libeufin-deployment-30b190fa849ddc97684b348659e7cca56ca5b185.tar.bz2
libeufin-deployment-30b190fa849ddc97684b348659e7cca56ca5b185.zip
fix command invocation
-rw-r--r--buildbot/master.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 6fe6da8..93a8aee 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -80,7 +80,7 @@ UNITTESTS_FACTORY.addSteps([
name="Unit tests",
description="Running unit tests",
descriptionDone="Unit tests done",
- command=["make check"]
+ command=["make", "check"]
)
])
@@ -91,7 +91,7 @@ INTEGRATION_TESTS_FACTORY.addSteps([
name="Integration tests",
description="Running the integration tests",
descriptionDone="Integration tests done",
- command=["make tests"]
+ command=["make", "tests"]
)
])