mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 04:10:06 +08:00
13f564b23a
update to d819606eebc82dad34b2a9b7b1a861844380df84
14 lines
289 B
Bash
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
|