@@ -161,7 +161,7 @@ public void after() throws Exception {
161161 }
162162
163163 @ Test
164- @ WithTimeout (value = 0 )
164+ @ WithTimeout (value = 900 ) // in case we need to pull windows docker image
165165 public void testCommandExecution () throws Exception {
166166 ByteArrayOutputStream output = new ByteArrayOutputStream ();
167167 ProcReturn r = execCommandInContainer ("container" , null , false , output , "where" , "cmd.exe" );
@@ -171,15 +171,15 @@ public void testCommandExecution() throws Exception {
171171 }
172172
173173 @ Test
174- @ WithTimeout (value = 0 )
174+ @ WithTimeout (value = 900 ) // in case we need to pull windows docker image
175175 public void testCommandExecutionNoOutput () throws Exception {
176176 ProcReturn r = execCommandInContainer ("container" , null , false , null , "where" , "cmd.exe" );
177177 assertEquals (0 , r .exitCode );
178178 assertFalse (r .proc .isAlive ());
179179 }
180180
181181 @ Test
182- @ WithTimeout (value = 0 )
182+ @ WithTimeout (value = 900 ) // in case we need to pull windows docker image
183183 public void testQuietCommandExecution () throws Exception {
184184 ByteArrayOutputStream output = new ByteArrayOutputStream ();
185185 ProcReturn r = execCommandInContainer ("container" , null , true , output , "echo" , "pid is 9999" );
0 commit comments