Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for applyTestDefaults (0.05 sec)

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

            tcParallelTests(splitNumber)
    
            requirements {
                // Smoke tests is usually heavy and the build time is twice on EC2 agents
                requiresNotEc2Agent()
            }
    
            applyTestDefaults(
                model,
                this,
                ":smoke-test:$task",
                timeout = 120,
                extraParameters =
                    listOf(
                        stage.getBuildScanCustomValueParam(),
    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/SmokeIdeTests.kt

            requirements {
                // These tests are usually heavy and the build time is twice on EC2 agents
                requiresNotEc2Agent()
            }
    
            applyTestDefaults(
                model = model,
                buildType = this,
                gradleTasks = ":smoke-ide-test:smokeIdeTest",
                extraParameters =
                    listOf(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Apr 17 07:24:45 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/DocsTest.kt

                features {
                    parallelTests {
                        this.numberOfBatches = parallelizationMethod.numberOfBatches
                    }
                }
            }
    
            applyTestDefaults(
                model,
                this,
                "docs:docsTest docs:checkSamples",
                os = os,
                arch = os.defaultArch,
                timeout = 60,
                extraParameters =
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jun 17 10:05:07 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

                tcParallelTests(parallelizationMethod.numberOfBatches)
            }
    
            features {
                perfmon {
                }
            }
    
            applyTestDefaults(
                model,
                this,
                testTasks,
                os = testCoverage.os,
                buildJvm = testCoverage.buildJvm,
                arch = testCoverage.arch,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

        cleanUpGitUntrackedFilesAndDirectories()
        gradleRunnerStep(model, gradleTasks, os, arch, extraParameters, maxParallelForks = maxParallelForks, isRetry = true)
    }
    
    fun applyTestDefaults(
        model: CIBuildModel,
        buildType: BaseGradleBuildType,
        gradleTasks: String,
        buildJvm: Jvm = BuildToolBuildJvm,
        os: Os = Os.LINUX,
        arch: Arch = Arch.AMD64,
    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