Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for TestCoverage (0.77 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

                    if (testCoverage.testType !in
                        listOf(TestType.ALL_VERSIONS_CROSS_VERSION, TestType.QUICK_FEEDBACK_CROSS_VERSION, TestType.SOAK)
                    ) {
                        result[testCoverage] = splitBucketsByTestClassesForBuildProject(testCoverage, buildProjectClassTimes)
                    }
                }
            }
            return result
        }
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Apr 10 15:09:32 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

            stage: Stage,
            testCoverage: TestCoverage,
        ): List<FunctionalTest> =
            when {
                testCoverage.testType == TestType.QUICK_FEEDBACK_CROSS_VERSION ->
                    quickCrossVersionTestBucketProvider.createFunctionalTestsFor(
                        stage,
                        testCoverage,
                    )
                testCoverage.testType == TestType.ALL_VERSIONS_CROSS_VERSION ->
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 10 05:08:24 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                            TestCoverage(35, TestType.SOAK, Os.MACOS, JvmCategory.MAX_LTS_VERSION, 1, arch = Arch.AARCH64),
                            TestCoverage(
                                10,
                                TestType.ALL_VERSIONS_CROSS_VERSION,
                                Os.LINUX,
                                JvmCategory.MIN_VERSION,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

            val testTasks = getTestTaskName(testCoverage, subprojects)
    
            val assembledExtraParameters =
                mutableListOf(
                    stage.getBuildScanCustomValueParam(testCoverage),
                    functionalTestExtraParameters(
                        listOf(FUNCTIONAL_TEST_TAG),
                        testCoverage.os,
                        testCoverage.arch,
                        testCoverage.testJvmVersion.major.toString(),
    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/FunctionalTestsPass.kt

            applyDefaultSettings()
    
            dependencies {
                snapshotDependencies(functionalTestProject.functionalTests)
            }
        }) {
        val testCoverage: TestCoverage = functionalTestProject.testCoverage
    
        override val failStage: Boolean
            get() = testCoverage.failStage
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

    class FlakyTestQuarantine(
        model: CIBuildModel,
        stage: Stage,
        testCoverage: TestCoverage,
    ) : OsAwareBaseGradleBuildType(os = testCoverage.os, stage = stage, init = {
            val os = testCoverage.os
            val arch = testCoverage.arch
            id("${model.projectId}_FlakyQuarantine_${testCoverage.asId(model)}")
            name = "Flaky Test Quarantine - ${testCoverage.asName()}"
            description = "Run all flaky tests skipped multiple times"
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/BuildScanUtils.kt

            .slice(this.stageName.ordinal until StageName.READY_FOR_RELEASE.ordinal + 1)
            .map { it.uuid }
    
    fun Stage.getBuildScanCustomValueParam(testCoverage: TestCoverage? = null): String {
        val customValues =
            if (testCoverage != null) {
                listOf(testCoverage.asBuildScanCustomValue()) + getBuildScanCustomValues()
            } else {
                getBuildScanCustomValues()
            }
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jun 10 05:45:46 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt

            model: CIBuildModel,
            stage: Stage,
            testCoverage: TestCoverage,
            bucketIndex: Int,
        ): FunctionalTest =
            FunctionalTest(
                model,
                testCoverage.getBucketUuid(model, bucketIndex),
                getName(testCoverage),
                getDescription(testCoverage),
                testCoverage,
                stage,
                parallelizationMethod,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Apr 10 15:09:32 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/projects/FunctionalTestProject.kt

    import model.Stage
    import model.TestCoverage
    
    const val DEFAULT_FUNCTIONAL_TEST_BUCKET_SIZE = 50
    const val DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE = 20
    const val DEFAULT_MACOS_FUNCTIONAL_TEST_BUCKET_SIZE = 20
    
    class FunctionalTestProject(
        val model: CIBuildModel,
        functionalTestBucketProvider: FunctionalTestBucketProvider,
        val testCoverage: TestCoverage,
        val stage: Stage,
    ) : Project({
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Feb 12 09:12:03 UTC 2025
    - 876 bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/projects/StageProject.kt

            topLevelFunctionalTests.forEach(this::buildType)
    
            val functionalTestProjects =
                allCoverage.map { testCoverage ->
                    FunctionalTestProject(
                        model,
                        functionalTestBucketProvider,
                        testCoverage,
                        stage,
                    )
                }
    
            functionalTestProjects.forEach { functionalTestProject ->
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 11.9K bytes
    - Viewed (0)
Back to top