mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 07:10:06 +08:00
13 lines
365 B
Makefile
13 lines
365 B
Makefile
.PHONY: test
|
|
test:
|
|
nvim --headless --noplugin -u tests/mininit.lua -c "lua require('plenary.test_harness').test_directory('tests/neo-tree/', {minimal_init='tests/mininit.lua',sequential=true})"
|
|
|
|
.PHONY: test-docker
|
|
test-docker:
|
|
docker build -t neo-tree .
|
|
docker run --rm neo-tree make test
|
|
|
|
.PHONY: format
|
|
format:
|
|
stylua --glob '*.lua' --glob '!defaults.lua' .
|