Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for crossVersionTests (0.05 sec)

  1. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "base-asm",
        "path": "platforms/core-runtime/base-asm",
        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "base-diagnostics",
        "path": "platforms/core-configuration/base-diagnostics",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 18:40:11 UTC 2025
    - 37.5K bytes
    - Viewed (0)
  2. .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 Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 00:34:25 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  3. .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 Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 05 13:00:26 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  4. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                    assertEquals(
                        it.crossVersionTests,
                        File(dir, "src/crossVersionTest").isDirectory,
                        "${it.name}'s crossVersionTests is wrong!",
                    )
                }
        }
    
        @Test
        fun allSubprojectsDefineTheirUnitTestPropertyCorrectly() {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 16 01:27:05 UTC 2025
    - 14.6K bytes
    - Viewed (0)
Back to top