Skip to content

Commit edff9c9

Browse files
committed
fix
1 parent 0d89ac4 commit edff9c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- vim_version: installed
3232
make_target: fast-test
3333
test_profile: vim-profile-installed.txt
34-
test_python: "python -m coverage run --append -q"
34+
test_python: "python -m coverage run --append"
3535

3636
env:
3737
VIM_VERSION: ${{ matrix.vim_version }}

test/run_command.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ test_file() {
2626

2727
rm -f ${outfile}
2828

29-
${vimlparser} ${neovim} ${vimfile} &> ${outfile}
29+
${vimlparser} ${neovim} ${vimfile} 2>&1 | grep -v "^Coverage.py warning" > ${outfile}
3030

3131
diffout=$(diff -u ${outfile} ${okfile})
3232
if [ -n "$diffout" ]; then

0 commit comments

Comments
 (0)