summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/smoke_test.vader5
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)