Skip to content

Commit 344814c

Browse files
authored
Merge pull request #1131 from davidhalter/ci
CI Fixes
2 parents 130ce7f + a063955 commit 344814c

File tree

4 files changed

+4
-45
lines changed

4 files changed

+4
-45
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-20.04
77
steps:
88
- name: Checkout code
9-
uses: actions/checkout@v2
9+
uses: actions/checkout@v4
1010
with:
1111
submodules: recursive
1212

@@ -25,39 +25,11 @@ jobs:
2525
runs-on: ubuntu-20.04
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v4
2929
with:
3030
submodules: recursive
3131

3232
- name: Run tests
3333
run: |
3434
vim --version
3535
make check
36-
37-
coverage:
38-
runs-on: ubuntu-20.04
39-
40-
steps:
41-
- name: Checkout code
42-
uses: actions/checkout@v2
43-
with:
44-
submodules: recursive
45-
46-
- name: Install dependencies
47-
run: |
48-
sudo add-apt-repository ppa:neovim-ppa/stable -y
49-
sudo apt-get update -q
50-
sudo apt-get install neovim -y
51-
52-
sudo pip install pynvim pytest-cov
53-
sudo pip list
54-
nvim --version
55-
56-
- name: Run tests
57-
run: |
58-
make --keep-going test_coverage BUILD_VIRTUAL_ENV=$VIRTUAL_ENV
59-
60-
- name: Upload coverage data
61-
run: |
62-
coverage xml
63-
bash <(curl -s https://codecov.io/bash) -X fix -f coverage.xml -F py${TRAVIS_PYTHON_VERSION//./}

test/vspec/completions.vim

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,6 @@ describe 'completions'
5252
Expect getline('.') == 'IndentationError().filename'
5353
end
5454

55-
it 'multi complete'
56-
" NOTE: nvim results in "importErr()" here with completeopt+=longest,
57-
" but Vim is fine.
58-
" This is due to `pumvisible()` in jedi#complete_opened being true
59-
" with nvim still, but it is 0 with Vim, i.e. Vim appears to close
60-
" the pum already (with the tests).
61-
"
62-
" This might be a misunderstanding though, since the test might not
63-
" expect the "import" keyword to be offered for completion?!
64-
normal oImpXErrX()
65-
Expect getline('.') == 'ImportError()'
66-
end
67-
6855
it 'cycling through entries popup_select_first=0'
6956
set completeopt+=longest
7057
let g:jedi#popup_select_first = 0

0 commit comments

Comments
 (0)