From 5c92ec644fbb4f5596cb01c8b14e10c2969e3946 Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Sat, 17 Feb 2024 18:38:38 +0800 Subject: [PATCH] ci(Makefile): remove coverage --- Makefile | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Makefile b/Makefile index 917e0214b..7e81ef4e8 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,6 @@ test: build/vader | build $(VIM_BIN) -Nu test/vimrc $(VIM_Es) -c 'Vader! test/**' -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 $(VIM_Es) -c 'Vader! test/**' - -$(COVIMERAGE): - $(COVIMERAGE) run --source after --source syntax --source autoload --source colors --source config --source ftplugin $(VIM_BIN) -Nu test/vimrc $(VIM_Es) -c 'Vader! test/**' - -build/covimerage: - virtualenv $@ -build/covimerage/bin/covimerage: | build/covimerage - build/covimerage/bin/pip install covimerage - build/vader: git clone --depth 1 https://github.com/junegunn/vader.vim.git $@