Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for includeTags (0.13 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

               options {
                   includeTags 'fast'
               }
            }
    
            testing {
               suites {
                   test {
                       useJUnitJupiter()
                       targets.all {
                           testTask.configure {
                                options {
                                    includeTags 'fast', 'medium'
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

            }
        }
    
        private void addTagsFilter(LauncherDiscoveryRequestBuilder requestBuilder) {
            List<String> includeTags = spec.getIncludeTags();
            if (!includeTags.isEmpty()) {
                requestBuilder.filters(includeTags(includeTags));
            }
            List<String> excludeTags = spec.getExcludeTags();
            if (!excludeTags.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                // JUnit Platform `includeTags` works before Spock engine, thus excludes all spock tests.
                // As a workaround, we tag all non-spock integration tests and use `includeTags(none() | Flaky)` here.
                (options as JUnitPlatformOptions).includeTags("none() | org.gradle.test.fixtures.Flaky")
                includeSpockAnnotation("org.gradle.test.fixtures.Flaky")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterCategoriesOrTagsCoverageIntegrationTest.groovy

                    }
            }
            testSourceGenerator.writeAllSources(testSources)
    
            buildFile << """
                test {
                    useJUnitPlatform {
                        includeTags 'TagA'
                        excludeTags 'TagC'
                    }
                }
            """
    
            when:
            run('test')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

                }
            """)
    
            and:
            succeeds ':test'
    
            then:
            executedAndNotSkipped ':test'
    
            where:
            key              | value
            'includeTags'    | '"good"'
            'excludeTags'    | '"bad"'
            'includeEngines' | '"junit-jupiter"'
            'excludeEngines' | '"junit-vintage-engine"'
        }
    
        @Timeout(60)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/node/minio-node.json

      "editable": true,
      "fiscalYearStartMonth": 0,
      "gnetId": 15306,
      "graphTooltip": 0,
      "id": 267,
      "links": [
        {
          "icon": "external link",
          "includeVars": true,
          "keepTime": true,
          "tags": [
            "minio"
          ],
          "type": "dashboards"
        }
      ],
      "liveNow": false,
      "panels": [
        {
          "datasource": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top