test: mark non-actionable tests as N/A #40207

Problem:
Listing individual "skipped" notices for each non-actionable or
NVIM_TEST_INTEG test is noisy and makes the "skipped" list overwhelming
and less meaningful.

Solution:
- Mark non-actionable tests with "N/A".
- Report NVIM_TEST_INTEG tests as a separate 1-line summary.
This commit is contained in:
Justin M. Keyes
2026-06-12 09:50:27 -04:00
committed by GitHub
parent 76cacf6f8b
commit baabb7ab6f
13 changed files with 37 additions and 26 deletions

View File

@@ -82,7 +82,7 @@ describe('vim._watch', function()
it(watchfunc .. '() detects file changes', function()
if watchfunc == 'inotify' then
skip(is_os('win'), 'not supported on windows')
skip(is_os('win'), 'N/A: inotify not supported on Windows')
skip(is_os('mac'), 'flaky test on mac')
skip(not is_ci() and n.fn.executable('inotifywait') == 0, 'inotifywait not found')
skip(t.is_arch('s390x'), 'inotifywait not available on s390x CI')