File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/test/java/org/jenkinsci/plugins/workflow/libs Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 32
32
import com .gargoylesoftware .htmlunit .html .HtmlTextArea ;
33
33
import com .gargoylesoftware .htmlunit .util .NameValuePair ;
34
34
import com .google .common .collect .ImmutableMap ;
35
+ import hudson .Functions ;
35
36
import hudson .model .Item ;
36
37
import hudson .model .Result ;
37
38
import hudson .plugins .git .GitSCM ;
54
55
import org .jenkinsci .plugins .workflow .job .WorkflowRun ;
55
56
import org .junit .Test ;
56
57
import static org .junit .Assert .*;
58
+ import static org .junit .Assume .assumeFalse ;
57
59
import org .junit .ClassRule ;
58
60
import org .junit .Rule ;
59
61
import org .jvnet .hudson .test .BuildWatcher ;
@@ -188,6 +190,7 @@ public class FolderLibrariesTest {
188
190
189
191
@ Issue ("JENKINS-43019" )
190
192
@ Test public void classCastException () throws Exception {
193
+ assumeFalse ("Too slow, prone to timing out before getting to build #51" , Functions .isWindows ());
191
194
sampleRepo1 .init ();
192
195
sampleRepo1 .write ("src/pkg/Obj.groovy" , "package pkg; public class Obj implements Serializable {public Obj() {}}" );
193
196
sampleRepo1 .write ("vars/objs.groovy" , "@groovy.transform.Field final pkg.Obj OBJ = new pkg.Obj()" );
You can’t perform that action at this time.
0 commit comments