Skip to content

Commit c8a844c

Browse files
authored
Merge pull request #1541 from ychin/ci-dont-run-broken-vim-syntax-tests
ci: Don't run Vim non-src tests (indent/syntax etc)
2 parents ed41976 + 65c9fc5 commit c8a844c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci-macvim.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,14 +375,17 @@ jobs:
375375
376376
- name: Test Vim
377377
if: startsWith(github.ref, 'refs/tags/') || !matrix.testgui
378-
timeout-minutes: 25
378+
timeout-minutes: 30
379379
run: |
380380
defaults delete org.vim.MacVim # Clean up stale states
381-
make ${MAKE_BUILD_ARGS} test
381+
# Currently we don't run any non-src tests, as syntax tests are fragile and prone to spamming escape codes.
382+
# This needs to be investigated and fixed upstream.
383+
# MacVim is unlikely to introduce breaking changes in runtime files anyway.
384+
make ${MAKE_BUILD_ARGS} -C src test
382385
383386
- name: Test Vim (GUI)
384387
if: startsWith(github.ref, 'refs/tags/') || matrix.testgui
385-
timeout-minutes: 25
388+
timeout-minutes: 30
386389
run: |
387390
defaults delete org.vim.MacVim # Clean up stale states
388391
make ${MAKE_BUILD_ARGS} -C src/testdir clean

0 commit comments

Comments
 (0)