Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tcParallelTests (0.94 sec)

  1. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

            description = "Smoke tests against third party plugins to see if they still work with the current Gradle version"
    
            tcParallelTests(splitNumber)
    
            requirements {
                // Smoke tests is usually heavy and the build time is twice on EC2 agents
                requiresNotEc2Agent()
            }
    
            applyTestDefaults(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

                ).filter { it.isNotBlank() }.joinToString(separator = " ")
    
            if (parallelizationMethod is ParallelizationMethod.TeamCityParallelTests) {
                tcParallelTests(parallelizationMethod.numberOfBatches)
            }
    
            features {
                perfmon {
                }
            }
    
            applyTestDefaults(
                model,
                this,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

                    filterTargetBranch = "+:refs/heads/${VersionedSettingsBranch.fromDslContext().branchName}"
                }
        }
    }
    
    fun BaseGradleBuildType.tcParallelTests(numberOfBatches: Int) {
        if (numberOfBatches > 1) {
            params {
                param("env.TEAMCITY_PARALLEL_TESTS_ENABLED", "1")
            }
            features {
                parallelTests {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Jun 11 12:58:05 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top