Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for TeamCityParallelTests (0.09 seconds)

  1. .teamcity/test-buckets.json

            ],
            "parallelizationMethod": {
              "numberOfBatches": 6,
              "name": "TeamCityParallelTests"
            }
          },
          {
            "subprojects": [
              "configuration-cache"
            ],
            "parallelizationMethod": {
              "numberOfBatches": 5,
              "name": "TeamCityParallelTests"
            }
          },
          {
            "subprojects": [
              "tooling-api"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 18:38:15 GMT 2026
    - 118.6K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/configurations/DocsTest.kt

            val parallelizationMethod =
                if (os == Os.LINUX) {
                    ParallelizationMethod.TestDistribution
                } else {
                    TeamCityParallelTests(4)
                }
    
            if (parallelizationMethod is TeamCityParallelTests) {
                features {
                    parallelTests {
                        this.numberOfBatches = parallelizationMethod.numberOfBatches
                    }
                }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 08 05:47:02 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  3. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                    indexOfFirst {
                        it is SmallSubprojectBucket &&
                            (
                                it.parallelizationMethod !is ParallelizationMethod.TeamCityParallelTests ||
                                    it.parallelizationMethod.numberOfBatches == 1
                            )
                    }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 14:43:33 GMT 2026
    - 8.1K bytes
    - Click Count (0)
Back to Top