mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 03:00:05 +08:00
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
|