From 59b2b1c9551569c889a75937b73879171ef9caee Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Wed, 19 Jun 2019 01:19:20 +0200 Subject: tests: oldtests: mark Test_cursorhold_insert as flaky [ci skip] (#10264) Fails often on CI (OSX), e.g.: ``` 1 FAILED: Found errors in Test_cursorhold_insert(): function RunTheTest[37]..Test_cursorhold_insert line 9: Expected 1 but got 0 ``` > Compiler: clang Xcode: xcode10.1 C The test could be adjusted to re-try the timer a few times, but I do not think it's really worth it currently, and that the test should be marked as flaky instead. --- src/nvim/testdir/runtest.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/nvim/testdir/runtest.vim b/src/nvim/testdir/runtest.vim index 6f039509f3..605e7c73eb 100644 --- a/src/nvim/testdir/runtest.vim +++ b/src/nvim/testdir/runtest.vim @@ -264,6 +264,7 @@ endif " Names of flaky tests. let s:flaky = [ + \ 'Test_cursorhold_insert()', \ 'Test_exit_callback_interval()', \ 'Test_oneshot()', \ 'Test_out_cb()', -- cgit