File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -128,8 +128,7 @@ export async function runCts(
128128) : Promise < void > {
129129 const withBenchmarkServer =
130130 suites . benchmark && ( clients . includes ( 'search' ) || clients . includes ( 'all' ) || languages . includes ( 'swift' ) ) ;
131- const withClientServer =
132- suites . client && ( clients . includes ( 'search' ) || clients . includes ( 'all' ) || process . platform === 'darwin' ) ; // the macos swift CI also runs the clients tests
131+ const withClientServer = suites . client ;
133132 const closeTestServer = await startTestServer ( {
134133 ...suites ,
135134 benchmark : withBenchmarkServer ,
@@ -142,7 +141,8 @@ export async function runCts(
142141
143142 await closeTestServer ( ) ;
144143
145- if ( withClientServer ) {
144+ if ( withClientServer && ( clients . includes ( 'search' ) || clients . includes ( 'all' ) || process . platform === 'darwin' ) ) {
145+ // the macos swift CI also runs the clients tests
146146 const skip = ( lang : Language ) : number => ( languages . includes ( lang ) ? 1 : 0 ) ;
147147
148148 assertValidTimeouts ( languages . length ) ;
You can’t perform that action at this time.
0 commit comments