File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,8 @@ jobs:
309309 const { data: workflow_run } = await github.rest.actions.listJobsForWorkflowRun({
310310 owner: context.repo.owner,
311311 repo: context.repo.repo,
312- run_id: context.runId
312+ run_id: context.runId,
313+ per_page: 100
313314 });
314315 const matrix = JSON.parse(process.env.matrix);
315316 const job_name = `common / test${ matrix['test-partition'] } (${ matrix['test-java-version'] }, ${ matrix.vm })`;
Original file line number Diff line number Diff line change @@ -54,7 +54,8 @@ develocity {
5454 termsOfUseUrl.set(" https://gradle.com/help/legal-terms-of-use" )
5555 termsOfUseAgree.set(" yes" )
5656
57- if (! gradle.startParameter.taskNames.contains(" listTestsInPartition" )) {
57+ if (! gradle.startParameter.taskNames.contains(" listTestsInPartition" )
58+ && ! gradle.startParameter.taskNames.contains(" :test-report:reportFlakyTests" )) {
5859 buildScanPublished {
5960 File (" build-scan.txt" ).printWriter().use { writer ->
6061 writer.println (buildScanUri)
You can’t perform that action at this time.
0 commit comments