Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 306 for SKIPPED (0.1 sec)

  1. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/PerformanceTestPluginTest.kt

            assert(
                allTestsWereSkipped(junitXmlWith(tests = "2", skipped = "2"))
            )
    
            assert(
                !allTestsWereSkipped(junitXmlWith(tests = "2", skipped = "1"))
            )
        }
    
        private
        fun junitXmlWith(tests: String, skipped: String): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1002 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecutionOutcome.java

        UP_TO_DATE(true, true, "UP-TO-DATE"),
        SKIPPED(true, false, "SKIPPED"),
        NO_SOURCE(true, false, "NO-SOURCE"),
        EXECUTED(false, false, null);
    
        private final boolean skipped;
        private final boolean upToDate;
        private final String message;
    
        TaskExecutionOutcome(boolean skipped, boolean upToDate, @Nullable String message) {
            this.skipped = skipped;
            this.upToDate = upToDate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 16:09:32 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskTypeUpToDateIntegrationTest.groovy

            file('build/input.txt').makeOlder()
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
    
            buildFile << """
                task other {}
            """
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
        }
    
        def "task with type declared in build script is not up-to-date after build script change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/service-no-port-name-system-namespace.yaml

    # If the service is in system namespace, i.e., kube-system, istio-system, kube-public, the check will be skipped.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service1
      namespace: kube-system  # Skipped because it's in a kube system namespace
    spec:
      selector:
        app: my-service1
      ports:
        - protocol: TCP
          port: 8080
          targetPort: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/TaskStateInternalTest.groovy

            assertTrue(state.executed)
            assertFalse(state.skipped)
            assertFalse(state.upToDate)
            assertFalse(state.configurable)
            assertThat(state.failure, sameInstance(failure))
        }
    
        @Test
        public void canMarkTaskAsSkipped() {
            state.setOutcome(TaskExecutionOutcome.SKIPPED)
            assertTrue(state.executed)
            assertTrue(state.skipped)
            assertFalse(state.upToDate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 30 07:54:03 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

            then:
            skipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("main")
    
            and:
            final projectFile = projectFile("mainExe.vcxproj")
            assert projectFile.sourceFiles.contains('src/main/cpp/foo.cpp')
    
            when:
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            skipped getComponentTasks("main")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCleanupProgressMonitorTest.groovy

            1 * context.progress("2 entries deleted, 1 skipped")
        }
    
        def "always reports deleted, even if all entries are skipped"() {
            when:
            progressMonitor.incrementSkipped()
    
            then:
            1 * context.progress("0 entries deleted, 1 skipped")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskEnumTypesInputPropertyIntegrationTest.groovy

            run "someTask"
    
            then:
            skipped(":someTask")
    
            // Change the values of the enum
            when:
            otherScript.replace("E1, E2", "E0, E1")
    
            and:
            run "someTask"
    
            then:
            skipped(":someTask")
    
            when:
            run "someTask"
    
            then:
            skipped(":someTask")
    
            // Change the value of the property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            }
        }
    
        def "captures skipped test progress logging events" () {
            withSkippedTestClasses(10)
    
            when:
            succeeds("test")
    
            then:
            events.statusLogged("0 tests completed")
            events.statusLogged("1 test completed, 1 skipped")
            (2..10).each { count ->
                assert events.statusLogged("${count} tests completed, ${count} skipped")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingTest.groovy

            when:
            logging.events STARTED, SKIPPED
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows events to be added as string values"() {
            when:
            logging.events "started", "skipped"
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows stack trace formats to be added as enum values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top