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:
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
You can’t perform that action at this time.
0 commit comments