mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:40:05 +08:00
23 lines
409 B
Makefile
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
|