Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FlakyTestQuarantine (1.45 sec)

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

                .flatMap { it.functionalTests }
                .filter { it.os == os && !it.testType.crossVersionTests }
                .forEach {
                    buildType(FlakyTestQuarantine(model, stage, it))
                }
    
            model.stages
                .filter { it.stageName <= StageName.READY_FOR_RELEASE }
    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. .teamcity/src/main/kotlin/configurations/SmokeTests.kt

            description = "Smoke tests against third party plugins to see if they still work with the current Gradle version"
    
            if (flakyTestStrategy != FlakyTestStrategy.ONLY) {
                // No need to split in FlakyTestQuarantine
                tcParallelTests(splitNumber)
            }
    
            requirements {
                // Smoke tests is usually heavy and the build time is twice on EC2 agents
                requiresNotEc2Agent()
            }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Dec 22 07:15:16 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top