forked from Shougo/denite.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (26 loc) · 672 Bytes
/
Makefile
File metadata and controls
32 lines (26 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
PATH := ./vim-themis/bin:$(PATH)
export THEMIS_VIM := nvim
export THEMIS_ARGS := -e -s --headless
export THEMIS_HOME := ./vim-themis
install: vim-themis
pip install neovim --upgrade
pip install pytest --upgrade
pip install flake8 --upgrade
pip install mypy --upgrade
pip install vim-vint --upgrade
lint:
vint --version
vint plugin
vint autoload
flake8 --version
flake8 rplugin/python3/denite
mypy --version
mypy --ignore-missing-imports --follow-imports=skip rplugin/python3/denite
test:
themis --version
themis test/autoload/*
pytest --version
pytest
vim-themis:
git clone https://github.com/thinca/vim-themis vim-themis
.PHONY: install lint test