diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-19 01:19:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-19 01:19:20 +0200 |
commit | 59b2b1c9551569c889a75937b73879171ef9caee (patch) | |
tree | 3aab6be503cd499f5b54a876caf5fadb58d32d36 /src | |
parent | c6ce40bf37c31d1db502e0df1d37e47316a1ddbd (diff) | |
download | rneovim-59b2b1c9551569c889a75937b73879171ef9caee.tar.gz rneovim-59b2b1c9551569c889a75937b73879171ef9caee.tar.bz2 rneovim-59b2b1c9551569c889a75937b73879171ef9caee.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/runtest.vim | 1 |
1 files changed, 1 insertions, 0 deletions
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()', |