diff options
Diffstat (limited to 'test/script')
-rwxr-xr-x | test/script/custom-checks | 3 | ||||
-rwxr-xr-x | test/script/run-vader-tests | 3 | ||||
-rwxr-xr-x | test/script/run-vint | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/test/script/custom-checks b/test/script/custom-checks index 76b9bc86..d4027fec 100755 --- a/test/script/custom-checks +++ b/test/script/custom-checks @@ -4,8 +4,7 @@ set -e set -u exit_code=0 -image=w0rp/ale -docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$image") +docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$DOCKER_RUN_IMAGE") echo '========================================' echo 'Running custom linting rules' diff --git a/test/script/run-vader-tests b/test/script/run-vader-tests index 3e7e815c..e952faf0 100755 --- a/test/script/run-vader-tests +++ b/test/script/run-vader-tests @@ -3,8 +3,7 @@ set -e set -u -image=w0rp/ale -docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$image") +docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$DOCKER_RUN_IMAGE") red='\033[0;31m' green='\033[0;32m' nc='\033[0m' diff --git a/test/script/run-vint b/test/script/run-vint index 0d5b6e11..ce42ad41 100755 --- a/test/script/run-vint +++ b/test/script/run-vint @@ -4,8 +4,7 @@ set -e set -u exit_code=0 -image=w0rp/ale -docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$image") +docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$DOCKER_RUN_IMAGE") echo '========================================' echo 'Running Vint to lint our code' |