diff options
author | w0rp <devw0rp@gmail.com> | 2018-07-13 09:53:07 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-07-13 09:53:07 +0100 |
commit | 5155a35a80fe3b20659eb0f28cc6cc720532dd3f (patch) | |
tree | 4bc8aa41b7965bc7b57e77e49c13d3d2f7190563 | |
parent | a782e0622313672cc7d807425a09a30288b11614 (diff) | |
download | ale-5155a35a80fe3b20659eb0f28cc6cc720532dd3f.zip |
Retry the smoke test on Windows too
-rw-r--r-- | test/smoke_test.vader | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/smoke_test.vader b/test/smoke_test.vader index 35aa0323..6fbdc121 100644 --- a/test/smoke_test.vader +++ b/test/smoke_test.vader @@ -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) |