1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00
SpaceVim/bundle/defx.nvim/Makefile

23 lines
409 B
Makefile
Raw Normal View History

2020-10-31 15:58:52 +08:00
PATH := $(HOME)/.local/bin:$(PATH)
2020-06-13 14:06:35 +08:00
2020-10-31 15:58:52 +08:00
install:
pip3 install --upgrade -r test/requirements.txt
2020-06-13 14:06:35 +08:00
2020-10-31 15:58:52 +08:00
install-user:
pip3 install --user --upgrade -r test/requirements.txt
2020-06-13 14:06:35 +08:00
lint:
vint --version
vint plugin
vint autoload
flake8 --version
flake8 rplugin
mypy --version
mypy --ignore-missing-imports --follow-imports=skip --strict rplugin/python3/defx
test:
pytest --version
pytest
.PHONY: install lint test