File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,8 @@ jobs:
309
309
const { data: workflow_run } = await github.rest.actions.listJobsForWorkflowRun({
310
310
owner: context.repo.owner,
311
311
repo: context.repo.repo,
312
- run_id: context.runId
312
+ run_id: context.runId,
313
+ per_page: 100
313
314
});
314
315
const matrix = JSON.parse(process.env.matrix);
315
316
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 {
54
54
termsOfUseUrl.set(" https://gradle.com/help/legal-terms-of-use" )
55
55
termsOfUseAgree.set(" yes" )
56
56
57
- if (! gradle.startParameter.taskNames.contains(" listTestsInPartition" )) {
57
+ if (! gradle.startParameter.taskNames.contains(" listTestsInPartition" )
58
+ && ! gradle.startParameter.taskNames.contains(" :test-report:reportFlakyTests" )) {
58
59
buildScanPublished {
59
60
File (" build-scan.txt" ).printWriter().use { writer ->
60
61
writer.println (buildScanUri)
You can’t perform that action at this time.
0 commit comments