1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 03:00:05 +08:00
SpaceVim/bundle/ChineseLinter.vim/.ci/script.sh

14 lines
289 B
Bash
Raw Normal View History

#!/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