Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for crossVersionTests (0.07 sec)

  1. .teamcity/src/main/kotlin/projects/StageProject.kt

                    )
                }
                if (crossVersionTests.size > 1) {
                    buildType(
                        PartialTrigger(
                            "All Cross-Version Tests for ${stage.stageName.stageName}",
                            "Stage_${stage.stageName.id}_CrossVersionTests",
                            model,
                            crossVersionTests + previousCrossVersionTests,
                        ),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:24:58 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        val unitTests: Boolean = true,
        val functionalTests: Boolean = true,
        val crossVersionTests: Boolean = false,
    ) {
        fun hasTestsOf(testType: TestType) =
            (unitTests && testType.unitTests) ||
                (functionalTests && testType.functionalTests) ||
                (crossVersionTests && testType.crossVersionTests)
    }
    
    data class Stage(
        val stageName: StageName,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
Back to top