File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ version: 2
33common : &common
44 working_directory : ~/repo
55 docker :
6- - image : blueyed/vim-python-pep8-indent-vims-for-test:2 @sha256:a7be5f4d07ed361ce3ca78cedd413d67d583f96ab0a59feb512af89052c50172
6+ - image : blueyed/vim-python-pep8-indent-vims-for-test:3 @sha256:e7e3c4f4b021954a40f2f1d88dc470f119dc65603c63724d1c58cbe437fdc2d4
77
88jobs :
99 test :
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ FROM testbed/vim:latest
22
33RUN apk --no-cache add gtk+2.0-dev libx11-dev libxt-dev mcookie xauth xvfb
44# NOTE: +profile needs huge features.
5- RUN install_vim -tag master --with-features=huge \
5+ RUN install_vim -tag v8.1.0129 -name vim --with-features=huge \
66 --disable-channel --disable-netbeans --disable-xim \
77 --enable-gui=gtk2 --with-x -build
8- RUN ln -s /vim-build/bin/vim-master /usr/bin/gvim
8+ RUN ln -s /vim-build/bin/vim /usr/bin/gvim
99RUN gvim --version
1010
1111# Install covimerage and vint.
Original file line number Diff line number Diff line change 33
44# Run tests in dockerized Vims.
55DOCKER_REPO: =blueyed/vim-python-pep8-indent-vims-for-test
6- DOCKER_TAG: =2
6+ DOCKER_TAG: =3
77DOCKER_IMAGE: =$(DOCKER_REPO ) :$(DOCKER_TAG )
88
99docker_image :
Original file line number Diff line number Diff line change 44 before ( :all ) {
55 vim . command "new"
66 vim . command "set ft=cython"
7- # vim.command("set indentexpr?").should include "GetPythonPEPIndent("
7+ vim . command ( "set indentexpr?" ) . should include "GetPythonPEPIndent("
88 }
99 before ( :each ) {
10+ # clear buffer
11+ vim . normal 'gg"_dG'
12+
1013 # Insert two blank lines.
1114 # The first line is a corner case in this plugin that would shadow the
1215 # correct behaviour of other tests. Thus we explicitly jump to the first
You can’t perform that action at this time.
0 commit comments