mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-06 10:54:22 +08:00
27 lines
428 B
Makefile
27 lines
428 B
Makefile
test:
|
|
pytest test_*.py
|
|
|
|
build:
|
|
mkdir $@
|
|
|
|
build/vint: | build
|
|
virtualenv -p python3.6 $@
|
|
$@/bin/pip install vim-vint==0.3.19
|
|
|
|
build/flake8: | build
|
|
virtualenv -p python3.6 $@
|
|
$@/bin/pip install flake8==3.5.0
|
|
|
|
vint: build/vint
|
|
build/vint/bin/vint after autoload ftplugin plugin
|
|
|
|
flake8: build/flake8
|
|
build/flake8/bin/flake8 pythonx/jedi_*.py
|
|
|
|
check: vint flake8
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
.PHONY: test check clean vint flake8
|