1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 22:30:04 +08:00
SpaceVim/bundle/defx.nvim/Makefile
2020-10-31 15:58:52 +08:00

23 lines
409 B
Makefile

PATH := $(HOME)/.local/bin:$(PATH)
install:
pip3 install --upgrade -r test/requirements.txt
install-user:
pip3 install --user --upgrade -r test/requirements.txt
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