From dd6002aef80c631568edecdbc48e1c41ebf430f5 Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Mon, 21 Mar 2022 23:18:30 +0800 Subject: [PATCH] test(Makefile): use `-Es` mode --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9f50acccd..e5344c018 100644 --- a/Makefile +++ b/Makefile @@ -4,10 +4,10 @@ test: build/vader | build COVIMERAGE=$(shell command -v covimerage 2>/dev/null || echo build/covimerage/bin/covimerage) test_coverage: $(COVIMERAGE) build/vader | build - $(COVIMERAGE) run --source after --source syntax --source autoload --source colors --source config --source ftplugin $(VIM_BIN) -Nu test/vimrc -c 'Vader! test/**' + $(COVIMERAGE) run --source after --source syntax --source autoload --source colors --source config --source ftplugin $(VIM_BIN) -Nu test/vimrc -Es -c 'Vader! test/**' $(COVIMERAGE): - $(COVIMERAGE) run --source after --source syntax --source autoload --source colors --source config --source ftplugin $(VIM_BIN) -Nu test/vimrc -c 'Vader! test/**' + $(COVIMERAGE) run --source after --source syntax --source autoload --source colors --source config --source ftplugin $(VIM_BIN) -Nu test/vimrc -Es -c 'Vader! test/**' build/covimerage: virtualenv $@