- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for flakyTests (0.04 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
/** * Specify the flaky test quarantine strategy: * * -PflakyTests=include: run all tests, including flaky tests. * -PflakyTests=exclude: run all tests, excluding flaky tests. * -PflakyTests=only: run flaky tests only. * * Default value (if absent) is "include". */ const val FLAKY_TEST = "flakyTests" const val INCLUDE_PERFORMANCE_TEST_SCENARIOS = "includePerformanceTestScenarios"Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Dec 18 22:01:30 UTC 2025 - 17.7K bytes - Viewed (0) -
.github/workflows/contributor-pr.yml
uses: gradle/actions/setup-gradle@v5 with: cache-read-only: ${{ github.ref != 'refs/heads/master' }} - run: ./gradlew ${{ matrix.bucket.tasks }} -DdisableLocalCache=true -PflakyTests=exclude ${{ needs.build.outputs.sys-prop-args }} unit-test-windows-arm: name: "Unit Test Windows ARM" permissions: contents: read runs-on: windows-11-arm needs: buildRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Sun Dec 14 14:03:48 UTC 2025 - 5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/SmokeTests.kt
buildScanTagParam("SmokeTests"), "-PtestJavaVersion=${testJava.version.major}", "-PtestJavaVendor=${testJava.vendor.name.lowercase()}", "-PflakyTests=$flakyTestStrategy", ).joinToString(" "), )
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 22 07:15:16 UTC 2025 - 1.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt
extraParameters = listOf( stage.getBuildScanCustomValueParam(), buildScanTagParam("SmokeIdeTests"), "-PflakyTests=$flakyTestStrategy", ).joinToString(" "), ) }) { companion object { fun buildTypeId(model: CIBuildModel) = "${model.projectId}_SmokeIdeTests" }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 09 05:26:45 UTC 2025 - 1.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
testCoverage.arch, testCoverage.testJvmVersion.major.toString(), testCoverage.vendor.name.lowercase(), ), "-PflakyTests=${FlakyTestStrategy.EXCLUDE}", extraParameters, parallelizationMethod.extraBuildParameters, ).filter { it.isNotBlank() }.joinToString(separator = " ")Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 09 05:26:45 UTC 2025 - 5.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt
testCoverage.vendor.name.lowercase(), ) val parameters = ( buildToolGradleParameters() + listOf( "-PflakyTests=${FlakyTestStrategy.ONLY}", "-x", ":docs:platformTest", "-x", ":docs:configCacheTest", "-x",
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 22 07:15:16 UTC 2025 - 5.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
extraTasks tasks = "clean sanityCheck test ${extraTasks.joinToString( " ", )} -PflakyTests=${FlakyTestStrategy.EXCLUDE} --no-configuration-cache" gradleHome = "%teamcity.build.checkoutDir%/dogfood-second" gradleParams = defaultParameters } },Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 09 05:26:45 UTC 2025 - 7.3K bytes - Viewed (0)