aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Martins <smartins@kde.org>2018-09-22 16:30:08 +0100
committerSergio Martins <smartins@kde.org>2018-09-22 16:30:08 +0100
commitf1b8a336c39d7be1ca982de34b34b2ed80b77954 (patch)
tree4b41554599304fceaf5c074186c5a6815737a7dd
parent609d8277898d9afc78082196536dfa4f8be5bec8 (diff)
test_docker.py: Execute the build script from our repo
The one in /usr/bin will be deleted from the containers
-rwxr-xr-xtests/docker/test_docker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/docker/test_docker.py b/tests/docker/test_docker.py
index 25a35f81..1e5af3c5 100755
--- a/tests/docker/test_docker.py
+++ b/tests/docker/test_docker.py
@@ -5,7 +5,7 @@ import sys, os, json, argparse
JSON_CONFIG_FILENAME = os.path.dirname(sys.argv[0]) + '/conf.json'
MAKEFLAGS = "-j12"
BRANCH = 'master'
-BUILD_SCRIPT = '/usr/bin/build-clazy.sh'
+BUILD_SCRIPT = '/root/clazy/tests/docker/build-clazy.sh'
class DockerTest:
def __init__(self, name):