File tree 3 files changed +7
-10
lines changed
3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,10 @@ all: release
2
2
3
3
dev : build fmt clippy vint
4
4
5
- ci : vint python-lint check-fmt-and-clippy test integration-test
5
+ ci : vim-lint python-lint check-fmt-and-clippy test integration-test
6
6
7
- check :
7
+ check-fmt-and-clippy :
8
8
cargo check
9
-
10
- check-fmt-and-clippy : check
11
9
cargo fmt -- --check
12
10
cargo clippy -- --deny warnings
13
11
20
18
clippy :
21
19
cargo clippy
22
20
23
- vint :
21
+ vim-lint :
24
22
vint autoload plugin
25
23
26
24
release :
63
61
cargo clean
64
62
rm -rf bin/languageclient
65
63
66
- DATE := $(shell date +% F)
64
+ DATE := $(shell date --utc +% F)
67
65
68
66
build-docker-image : ci/Dockerfile
69
67
docker build \
Original file line number Diff line number Diff line change 1
- FROM rust:1.45 -slim
1
+ FROM rust:1.46 -slim
2
2
3
3
RUN apt-get update \
4
4
&& apt-get install --yes --no-install-recommends neovim curl git python3-pip python3-pytest mypy flake8 npm make \
@@ -7,8 +7,7 @@ RUN apt-get update \
7
7
8
8
RUN python3 -m pip install neovim vim-vint
9
9
10
- RUN rustup toolchain install 1.45.0 --component rustfmt clippy \
11
- && rustup show
10
+ RUN rustup component add rustfmt clippy && rustup show
12
11
RUN curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-linux -o /usr/local/bin/rust-analyzer \
13
12
&& chmod +x /usr/local/bin/rust-analyzer
14
13
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ def test_textDocument_documentSymbol(nvim):
130
130
131
131
nvim .command ("3lnext" )
132
132
133
- assert nvim .current .window .cursor == [ 8 , 0 ]
133
+ assert nvim .current .window .cursor != [ 1 , 1 ]
134
134
135
135
136
136
def test_workspace_symbol (nvim ):
You can’t perform that action at this time.
0 commit comments