We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d89ac4 commit edff9c9Copy full SHA for edff9c9
.github/workflows/test.yml
@@ -31,7 +31,7 @@ jobs:
31
- vim_version: installed
32
make_target: fast-test
33
test_profile: vim-profile-installed.txt
34
- test_python: "python -m coverage run --append -q"
+ test_python: "python -m coverage run --append"
35
36
env:
37
VIM_VERSION: ${{ matrix.vim_version }}
test/run_command.sh
@@ -26,7 +26,7 @@ test_file() {
26
27
rm -f ${outfile}
28
29
- ${vimlparser} ${neovim} ${vimfile} &> ${outfile}
+ ${vimlparser} ${neovim} ${vimfile} 2>&1 | grep -v "^Coverage.py warning" > ${outfile}
30
diffout=$(diff -u ${outfile} ${okfile})
if [ -n "$diffout" ]; then
0 commit comments