1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 04:10:06 +08:00
SpaceVim/bundle/ChineseLinter.vim/.ci/script.sh
Eric Wong 13f564b23a chore(chinese): use bundle ChineseLinter
update to d819606eebc82dad34b2a9b7b1a861844380df84
2024-03-05 12:56:14 +08:00

14 lines
289 B
Bash

#!/usr/bin/env bash
set -ex
export PATH="${DEPS}/_neovim/bin:${PATH}"
echo "\$PATH: \"${PATH}\""
export VIM="${DEPS}/_neovim/share/nvim/runtime"
nvim --version
make test_coverage
covimerage -vv xml --omit 'build/*'
pip install codecov
codecov -X search gcov pycov -f coverage.xml
set +x