diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-24 13:18:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-24 13:18:38 +0200 |
commit | 46009499afbb0232124072d775caa9552d0f71de (patch) | |
tree | 02b53c75063dbca35323f0f9fae37f8debe14b1e | |
parent | 754ac5a834cb82f73ca552a9a55b90a40f9367f6 (diff) | |
parent | 13db912e5157259e1a1a20ea61b5883c22f36578 (diff) | |
download | rneovim-46009499afbb0232124072d775caa9552d0f71de.tar.gz rneovim-46009499afbb0232124072d775caa9552d0f71de.tar.bz2 rneovim-46009499afbb0232124072d775caa9552d0f71de.zip |
Merge pull request #15169 from bfredl/freebsdfail
fix(ci): disable broken test on openbsd also on freebsd
-rw-r--r-- | .github/workflows/ci.yml | 1 | ||||
-rw-r--r-- | test/functional/plugin/lsp_spec.lua | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa16a94802..3b89730434 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,7 @@ jobs: runner: ubuntu-20.04 os: linux runs-on: ${{ matrix.runner }} + timeout-minutes: 45 if: github.event.pull_request.draft == false env: CC: ${{ matrix.cc }} diff --git a/test/functional/plugin/lsp_spec.lua b/test/functional/plugin/lsp_spec.lua index e38ed10ab9..e5533af73b 100644 --- a/test/functional/plugin/lsp_spec.lua +++ b/test/functional/plugin/lsp_spec.lua @@ -14,6 +14,7 @@ local retry = helpers.retry local NIL = helpers.NIL local read_file = require('test.helpers').read_file local write_file = require('test.helpers').write_file +local isCI = helpers.isCI -- Use these to get access to a coroutine so that I can run async tests and use -- yield. @@ -262,8 +263,8 @@ describe('LSP', function() end) it('should succeed with manual shutdown', function() - if 'openbsd' == helpers.uname() then - pending('hangs the build on openbsd #14028, re-enable with freeze timeout #14204') + if isCI() then + pending('hangs the build on CI #14028, re-enable with freeze timeout #14204') return end local expected_handlers = { |