Add ALE to the Vim runtimepath in the Docker image so it can run tests.

This commit is contained in:
w0rp
2016-10-12 23:17:09 +01:00
parent 037b703682
commit 7287943473
2 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
IMAGE ?= w0rp/ale
DOCKER = docker run -a stderr --rm -v $(PWD):/testplugin -v $(PWD)/test:/home "$(IMAGE)"
DOCKER = docker run -a stderr --rm -v $(PWD):/testplugin -v $(PWD)/test:/home -v ${PWD}:/home/ale "$(IMAGE)"
test-setup:
docker images -q $(IMAGE) || docker pull $(IMAGE)