forked from VimPlug/jedi-vim
Makefile: use a single venv
This commit is contained in:
committed by
Dave Halter
parent
5123dbbbc7
commit
c6716c6392
19
Makefile
19
Makefile
@@ -4,19 +4,20 @@ test:
|
||||
build:
|
||||
mkdir $@
|
||||
|
||||
build/vint: | build
|
||||
build/venv: | 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
|
||||
build/venv/bin/vint: | build/venv
|
||||
$|/bin/pip install vim-vint==0.3.19
|
||||
|
||||
vint: build/vint
|
||||
build/vint/bin/vint after autoload ftplugin plugin
|
||||
build/venv/bin/flake8: | build/venv
|
||||
$|/bin/pip install flake8==3.5.0
|
||||
|
||||
flake8: build/flake8
|
||||
build/flake8/bin/flake8 pythonx/jedi_*.py
|
||||
vint: build/venv/bin/vint
|
||||
build/venv/bin/vint after autoload ftplugin plugin
|
||||
|
||||
flake8: build/venv/bin/flake8
|
||||
build/venv/bin/flake8 pythonx/jedi_*.py
|
||||
|
||||
check: vint flake8
|
||||
|
||||
|
||||
Reference in New Issue
Block a user