Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestType (0.05 sec)

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

                    val testTaskName =
                        if (testCoverage.testType ==
                            TestType.ISOLATED_PROJECTS
                        ) {
                            "isolatedProjectsIntegTest"
                        } else {
                            "${testCoverage.testType.asCamelCase()}Test"
                        }
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

     */
    fun Project.supportsPredictiveTestSelection() = !isPerformanceProject() && !setOf("smoke-test", "soak", "kotlin-dsl", "smoke-ide-test").contains(name)
    
    /**
     * Test lifecycle tasks that correspond to CIBuildModel.TestType (see .teamcity/Gradle_Check/model/CIBuildModel.kt).
     */
    fun TaskContainer.registerCITestDistributionLifecycleTasks() {
        val ciGroup = "CI Lifecycle"
    
        register("quickTest") {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top