Retry the smoke test on Windows too

This commit is contained in:
w0rp 2018-07-13 09:53:07 +01:00
parent a782e06223
commit 5155a35a80
No known key found for this signature in database
GPG Key ID: 0FC1ECAA8C81CD83
1 changed files with 3 additions and 2 deletions

View File

@ -151,8 +151,9 @@ Execute(Previous errors should be removed when linters change):
\ 'valid': 1,
\}]
" Try the test a few times over in NeoVim 0.3, where tests fail randomly.
for g:i in range(has('nvim-0.3') ? 5 : 1)
" Try the test a few times over in NeoVim 0.3 or Windows,
" where tests fail randomly.
for g:i in range(has('nvim-0.3') || has('win32') ? 5 : 1)
call ale#Lint()
call ale#engine#WaitForJobs(2000)