Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 771 for SKIPPED (0.1 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/TestOutcome.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures;
    
    public enum TestOutcome {
        PASSED,
        FAILED,
        SKIPPED,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 723 bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DispatchingBuildCacheIntegrationTest.groovy

            cacheOperations.assertStoredToLocalCacheForTask(cacheableTask)
            remoteCache.empty
    
            when:
            pullOnly()
            withBuildCache().run 'clean', cacheableTask
    
            then:
            skipped(cacheableTask)
            cacheOperations.getPackOperationsForTask(cacheableTask).empty
            remoteCache.empty
    
        }
    
        def 'push to remote'() {
            pushToRemote()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 15:17:04 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIncrementalBuildIntegrationTest.groovy

    // Comment added to the end of the resource file
    """
    
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped ":compileMainExecutableMainRc"
            skipped ":linkMainExecutable", ":mainExecutable"
        }
    
        def "compiles and links when resource compiler arg changes"() {
            when:
            buildFile << """
    model {
        components {
            main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            succeeds("javadoc")
            then:
            skipped(":javadoc")
    
            when:
            file("src/docs/custom.css").moveToDirectory(file("src/not-docs"))
            buildFile << """
                javadoc {
                    options.stylesheetFile = file('src/not-docs/custom.css')
                }
            """
            succeeds("javadoc")
            then:
            skipped(":javadoc")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/internal/testenv/testenv_test.go

    	})
    	t.Run("MustHaveExecPath", func(t *testing.T) {
    		testenv.MustHaveExecPath(t, "go")
    		hasExecGo = true
    	})
    	if !hasExec {
    		t.Errorf(`MustHaveExec(t) skipped unexpectedly`)
    	}
    	if !hasExecGo {
    		t.Errorf(`MustHaveExecPath(t, "go") skipped unexpectedly`)
    	}
    
    	dir := t.TempDir()
    	mainGo := filepath.Join(dir, "main.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultTestSkippedResult.java

    public class DefaultTestSkippedResult extends AbstractTestResult implements InternalTestSkippedResult {
        public DefaultTestSkippedResult(long startTime, long endTime) {
            super(startTime, endTime, "skipped");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 970 bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskLocaleIntegrationTest.groovy

        def "test logging can be configured on turkish locale"() {
            given:
            buildFile << """
                apply plugin:'java'
                test {
                    testLogging {
                        events "passed", "skipped", "failed"
                    }
                }
            """.stripIndent()
    
            when:
            executer
                .requireDaemon()
                .requireIsolatedDaemons()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/IncrementalBuildOutputOriginIntegrationTest.groovy

            then:
            originBuildInvocationId(":w1") == secondBuildId
            originBuildInvocationId(":w2") == firstBuildId
        }
    
        @UnsupportedWithConfigurationCache(because = "buildSrc is skipped")
        def "buildSrc tasks advertise build id"() {
            given:
            file("buildSrc/build.gradle").text = """
                tasks.create("w", WriteProperties) {
                    destinationFile = file("w.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:27:17 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

        public interface Result {
    
            /**
             * The message describing why the task was skipped.
             *
             * Expected to be {@code org.gradle.api.tasks.TaskState#getSkipMessage()}.
             */
            @Nullable
            String getSkipMessage();
    
            /**
             * The detailed reason why the task was skipped, if provided by the project configuration.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

                SCAN,
                GET_HELP)
    
            when:
            module.publish()
    
            then:
            succeeds 'retrieve'
        }
    
        @Issue('GRADLE-2034')
        def "mavenLocal skipped if contains pom but no artifact and there is another repository available"() {
            given:
            def anotherRepo = maven("another-local-repo")
            m2.mavenRepo().module('group', 'projectA', '1.2').publishPom()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top