File tree Expand file tree Collapse file tree 3 files changed +11
-28
lines changed
testing/runner/Views/Main Expand file tree Collapse file tree 3 files changed +11
-28
lines changed Original file line number Diff line number Diff line change @@ -100,30 +100,22 @@ jobs:
100100 ui.editors,
101101 ui.htmlEditor,
102102 ui.grid,
103- ui.scheduler(1/2),
104- ui.scheduler(2/2),
103+ ui.scheduler,
105104 viz
106105 ]
107106 TIMEZONE : ['']
108107 CSP : ['true']
109108 useJQuery : ['false']
110109 include :
111- - CONSTEL : ui.scheduler(1/2)
112- TIMEZONE : US/Pacific
113- useJQuery : ' false'
114- - CONSTEL : ui.scheduler(2/2)
110+ - CONSTEL : ui.scheduler
115111 TIMEZONE : US/Pacific
116112 useJQuery : ' false'
117113 - CONSTEL : misc
118114 CSP : ' false'
119115 useJQuery : ' true'
120- - CONSTEL : ui.widgets(1/2)
116+ - CONSTEL : ui.widgets
121117 CSP : ' false'
122118 useJQuery : ' false'
123- - CONSTEL : ui.widgets(2/2)
124- CSP : ' false'
125- useJQuery : ' false'
126-
127119 steps :
128120 - name : Get sources
129121 uses : actions/checkout@v4
@@ -148,15 +140,11 @@ jobs:
148140 matrix :
149141 constel : [
150142 ' ui' ,
151- ' ui.widgets(1/2)' ,
152- ' ui.widgets(2/2)' ,
153- ' ui.editors(1/2)' ,
154- ' ui.editors(2/2)' ,
143+ ' ui.widgets' ,
144+ ' ui.editors' ,
155145 ' ui.htmlEditor' ,
156- ' ui.grid(1/2)' ,
157- ' ui.grid(2/2)' ,
158- ' ui.scheduler(1/2)' ,
159- ' ui.scheduler(2/2)' ,
146+ ' ui.grid' ,
147+ ' ui.scheduler' ,
160148 ' viz'
161149 ]
162150
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ function start_runner_watchdog {
156156 local last_suite_time=unknown
157157
158158 while true ; do
159- sleep 180
159+ sleep 60
160160
161161 if [ ! -f $last_suite_time_file ] || [ $( cat $last_suite_time_file ) == $last_suite_time ]; then
162162 echo " Runner stalled"
Original file line number Diff line number Diff line change 8585 WORKER_COUNT ;
8686
8787 var calcWorkerFrameCount = function () {
88- if (runWorkerInNewWindow)
89- return 1 ; // NOTE: more than 1 window cause problems with tests that use focus
88+ @ * if (runWorkerInNewWindow)
89+ return 1 ; // NOTE: more than 1 window cause problems with tests that use focus *@
9090
91- var ua = navigator .userAgent ;
92-
93- if (window .ActiveXObject !== undefined )
94- return 1 ;
95-
96- return 10 ;
91+ return 4 ;
9792 };
9893
9994 WORKER_COUNT = calcWorkerFrameCount ();
You can’t perform that action at this time.
0 commit comments