Skip to content

Commit d7e1cbb

Browse files
committed
Retries always on java tests because java?
1 parent a65cf57 commit d7e1cbb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ycmd/tests/java/signature_help_test.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
from ycmd.tests.java import PathToTestFile, SharedYcmd
3636
from ycmd.tests.test_utils import ( CombineRequest,
3737
ParameterMatcher,
38-
SignatureMatcher )
38+
SignatureMatcher,
39+
WithRetry )
3940

4041

4142
def ProjectPath( *args ):
@@ -78,6 +79,7 @@ def RunTest( app, test ):
7879
assert_that( response.json, test[ 'expect' ][ 'data' ] )
7980

8081

82+
@WithRetry
8183
@SharedYcmd
8284
def SignatureHelp_MethodTrigger_test( app ):
8385
RunTest( app, {
@@ -105,6 +107,7 @@ def SignatureHelp_MethodTrigger_test( app ):
105107
} )
106108

107109

110+
@WithRetry
108111
@SharedYcmd
109112
def SignatureHelp_ArgTrigger_test( app ):
110113
RunTest( app, {
@@ -136,6 +139,7 @@ def SignatureHelp_ArgTrigger_test( app ):
136139
} )
137140

138141

142+
@WithRetry
139143
@SharedYcmd
140144
def SignatureHelp_Constructor_test( app ):
141145
RunTest( app, {

0 commit comments

Comments
 (0)