summaryrefslogtreecommitdiff
path: root/Makefile
blob: d1f10df9a52e812e79736205ba750f29106f83f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
test: vim-themis
	vim-themis/bin/themis --reporter spec test
	nosetests -v rplugin/python3
	flake8 rplugin/
	mypy --silent-imports rplugin/python3/deoplete

# Use existing vim-themis install from ~/.vim, or clone it.
vim-themis:
	git clone https://github.com/thinca/vim-themis vim-themis; \

.PHONY: test