- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for numberOfBatches (0.09 seconds)
-
.teamcity/test-buckets.json
"dependency-management" ], "parallelizationMethod": { "numberOfBatches": 6, "name": "TeamCityParallelTests" } }, { "subprojects": [ "configuration-cache" ], "parallelizationMethod": { "numberOfBatches": 5, "name": "TeamCityParallelTests" } }, {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Aug 01 00:23:04 GMT 2025 - 119.4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
"-PtestDistributionDogfoodingTag=alpine", "-PmaxTestDistributionLocalExecutors=0", ).joinToString(" ") } class TeamCityParallelTests( val numberOfBatches: Int, ) : ParallelizationMethod() companion object { private val objectMapper = ObjectMapper() fun fromJson(jsonObject: Map<String, Any>): ParallelizationMethod {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 09 05:26:45 GMT 2025 - 5.3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
} } } fun BaseGradleBuildType.tcParallelTests(numberOfBatches: Int) { if (numberOfBatches > 1) { params { param("env.TEAMCITY_PARALLEL_TESTS_ENABLED", "1") } features { parallelTests { this.numberOfBatches = numberOfBatches } } } } fun BuildFeatures.publishBuildStatusToGithub() {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Nov 20 07:29:52 GMT 2025 - 8.6K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/DocsTest.kt
TeamCityParallelTests(4) } if (parallelizationMethod is TeamCityParallelTests) { features { parallelTests { this.numberOfBatches = parallelizationMethod.numberOfBatches } } } failureConditions { // Disabled due to https://github.com/gradle/gradle-private/issues/4927 javaCrash = false
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Nov 18 02:29:43 GMT 2025 - 3.2K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
return parallelize(subProjectTestClassTimes, testCoverage) { numberOfBatches -> when (testCoverage.os) { Os.LINUX -> ParallelizationMethod.TestDistribution Os.ALPINE -> ParallelizationMethod.TestDistributionAlpine else -> ParallelizationMethod.TeamCityParallelTests(numberOfBatches) } } } private fun parallelize(Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Apr 10 15:09:32 GMT 2025 - 7.3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Sep 24 08:38:33 GMT 2025 - 8.2K bytes - Click Count (0)