Skip to content

Commit f90a0ba

Browse files
committed
tests/example: use Neovim 0.2.0
1 parent 74f3889 commit f90a0ba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ FROM testbed/vim:latest
3333
RUN install_vim -tag v7.3.429 -name vim73 -py -build \
3434
-tag v7.4.052 -name vim74-trusty -build \
3535
-tag master -py2 -py3 -ruby -lua -build \
36-
-tag neovim:v0.1.7 -py2 -py3 -ruby -build \
36+
-tag neovim:v0.2.0 -py2 -py3 -ruby -build \
3737
-tag neovim:master -py2 -py3 -ruby -build
3838

3939
```

example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ FROM testbed/vim
33
RUN install_vim -tag v7.3.429 -name vim73 -py -build \
44
-tag v7.4.052 -name vim74-trusty -build \
55
-tag master -py2 -py3 -ruby -lua -build \
6-
-tag neovim:v0.1.7 -py2 -py3 -ruby -build \
6+
-tag neovim:v0.2.0 -py2 -py3 -ruby -build \
77
-tag neovim:master -py2 -py3 -ruby -build

example/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ test: test-setup
5757
echo "Failed to get output from Lua for $${vim}." >&2; exit 1; \
5858
fi; \
5959
done; \
60-
neovim_tag_version=$$(docker run --rm "$(IMAGE)" neovim-v0.1.7 -u NONE --version | grep '^NVIM'); \
61-
if [ "$$neovim_tag_version" != 'NVIM 0.1.7' ]; then \
60+
neovim_tag_version=$$(docker run --rm "$(IMAGE)" neovim-v0.2.0 -u NONE --version | grep '^NVIM'); \
61+
if [ "$$neovim_tag_version" != 'NVIM v0.2.0' ]; then \
6262
echo "Unexpected version for Neovim tag: $$neovim_tag_version" >&2; \
6363
exit 1; \
6464
fi; \

0 commit comments

Comments
 (0)