- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for functionalTests (0.32 sec)
-
.teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt
val functionalTests = !ignoredSubprojects.contains(name) && subproject["functionalTests"] as Boolean val crossVersionTests = !ignoredSubprojects.contains(name) && subproject["crossVersionTests"] as Boolean return GradleSubproject(name, path, unitTests, functionalTests, crossVersionTests) }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 2.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/FunctionalTestProject.kt
val stage: Stage, ) : Project({ this.id(testCoverage.asId(model)) this.name = testCoverage.asName() }) { val functionalTests: List<BaseGradleBuildType> = functionalTestBucketProvider.createFunctionalTestsFor(stage, testCoverage) init { functionalTests.forEach(this::buildType) }
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 876 bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
val result = mutableMapOf<TestCoverage, List<SmallSubprojectBucket>>() for (stage in model.stages) { for (testCoverage in stage.functionalTests) { if (testCoverage.testType !in listOf(TestType.ALL_VERSIONS_CROSS_VERSION, TestType.QUICK_FEEDBACK_CROSS_VERSION, TestType.SOAK) ) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 7.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt
StageName.QUICK_FEEDBACK, StageName.PULL_REQUEST_FEEDBACK, StageName.READY_FOR_NIGHTLY, ) }.flatMap { it.functionalTests } .filter { it.os == os } .forEach { buildType(FlakyTestQuarantine(model, stage, it)) } }) class FlakyTestQuarantine( model: CIBuildModel,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jul 29 03:24:58 UTC 2025 - 5.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTestsPass.kt
name = functionalTestProject.name + " (Trigger)" type = Type.COMPOSITE 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) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
stage: Stage, testCoverage: TestCoverage, bucketIndex: Int, ): FunctionalTest { val parallelizationMethod = when (testCoverage.os) { Os.LINUX -> ParallelizationMethod.TestDistribution else -> ParallelizationMethod.None } return FunctionalTest( model, testCoverage.getBucketUuid(model, bucketIndex),
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 10 05:08:24 UTC 2025 - 8.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/StageTriggers.kt
) { val triggers: List<BaseGradleBuildType> init { triggers = mutableListOf() val allDependencies = stageProject.specificBuildTypes + stageProject.performanceTests + stageProject.functionalTests + stageProject.docsTestTriggers triggers.add(StageTrigger(model, stage, prevStage, null, allDependencies)) stageWithOsTriggers.getOrDefault(stage.stageName, emptyList()).forEach { targetOs ->
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Jun 11 10:33:45 UTC 2025 - 6.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
import jetbrains.buildServer.configs.kotlin.buildFeatures.perfmon import model.CIBuildModel import model.Stage import model.StageName import model.TestCoverage import model.TestType const val FUNCTIONAL_TEST_TAG = "FunctionalTest" sealed class ParallelizationMethod { open val extraBuildParameters: String @JsonProperty(access = JsonProperty.Access.WRITE_ONLY) get() = "" val name: String = this::class.simpleName!!
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 5.6K bytes - Viewed (0) -
buildscripts/verify-build.sh
if ! wget -q -O "$FUNCTIONAL_TESTS" https://raw.githubusercontent.com/minio/mc/master/functional-tests.sh; then echo "failed to download https://raw.githubusercontent.com/minio/mc/master/functional-tests.sh" exit 1 fi sed -i 's|-sS|-sSg|g' "$FUNCTIONAL_TESTS" chmod a+x "$FUNCTIONAL_TESTS" } function main() { echo "Testing in FS setup"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 19:28:51 UTC 2024 - 6.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt
str } override fun createFunctionalTestsFor( model: CIBuildModel, stage: Stage, testCoverage: TestCoverage, bucketIndex: Int, ): FunctionalTest = FunctionalTest( model, testCoverage.getBucketUuid(model, bucketIndex), getName(testCoverage), getDescription(testCoverage), testCoverage, stage,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 3.4K bytes - Viewed (0)