Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for excludeTestsMatching (0.19 sec)

  1. platforms/documentation/docs/build.gradle

                excludeTestsMatching "org.gradle.docs.samples.*.snippet-swift*.sample"
                excludeTestsMatching "org.gradle.docs.samples.*.building-swift*.sample"
                // We don't have Android SDK installed on mac M1 now
                excludeTestsMatching "org.gradle.docs.samples.*.building-android-*.sample"
                excludeTestsMatching "org.gradle.docs.samples.*.structuring-software-projects*android-app.sample"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. testing/smoke-test/build.gradle.kts

        register<SmokeTest>("smokeTest") {
            description = "Runs Smoke tests"
            configureForSmokeTest()
            useJUnitPlatform {
                filter {
                    excludeTestsMatching(gradleBuildTestPattern)
                    excludeTestsMatching(santaTrackerTestPattern)
                }
            }
        }
    
        register<SmokeTest>("configCacheSmokeTest") {
            description = "Runs Smoke tests with the configuration cache"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                }
                test {
                    forkEvery = 42
                    filter {
                        includeTestsMatching('*Class')
                        excludeTestsMatching('exclude-pattern')
                    }
                    useJUnitPlatform {
                        includeTags('included-tag')
                        excludeTags('excluded-tag')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top