File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -375,14 +375,17 @@ jobs:
375
375
376
376
- name : Test Vim
377
377
if : startsWith(github.ref, 'refs/tags/') || !matrix.testgui
378
- timeout-minutes : 25
378
+ timeout-minutes : 30
379
379
run : |
380
380
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
382
385
383
386
- name : Test Vim (GUI)
384
387
if : startsWith(github.ref, 'refs/tags/') || matrix.testgui
385
- timeout-minutes : 25
388
+ timeout-minutes : 30
386
389
run : |
387
390
defaults delete org.vim.MacVim # Clean up stale states
388
391
make ${MAKE_BUILD_ARGS} -C src/testdir clean
You can’t perform that action at this time.
0 commit comments