Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for rerun (0.1 sec)

  1. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest.groovy

            operations.size() == 10
            def rootTestOp = this.operations.first(ExecuteTestBuildOperationType)
            assertJunit(rootTestOp, this.operations)
    
            when:
            run "test", "--rerun-tasks"
    
            rootTestOp = this.operations.first(ExecuteTestBuildOperationType)
            operations = this.operations.all(ExecuteTestBuildOperationType)
    
            then:
            operations.size() == 10
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

            writer.endCDATA();
        }
    
        /**
         * Output in the format the Surefire uses when enabling retries.
         *
         * - https://maven.apache.org/components/surefire/maven-surefire-plugin/examples/rerun-failing-tests.html
         * - https://github.com/apache/maven-surefire/blob/edb3b71b95db98eef6a8e4fa98d376fd3512b05a/maven-surefire-plugin/src/site/resources/xsd/surefire-test-report-3.0.xsd
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/Gradleception.kt

            // If SanityCheck fails, Gradleception will definitely fail because the last build step is also sanityCheck
            dependsOn(RelativeId(SanityCheck.buildTypeId(model)))
        }
    
        /*
         To avoid unnecessary rerun, what we do here is a bit complicated:
    
         1. Build a Gradle distribution with a fixed timestamp and hash it, but never use this distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

        }
    
        @Internal
        protected
        fun getContributorsFromPullRequests(): Set<GitHubUser> {
            if (!milestone.isPresent) {
                throw IllegalStateException("Milestone not set: please rerun the task with `--milestone <milestone>`")
            }
            val prs: MutableList<GitHubPullRequest> = mutableListOf()
            (1..10).forEach { page ->
                val prPage = getMergedContributorPullRequests(page)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyGradlePluginInitIntegrationTest.groovy

            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
            assertFunctionalTestPassed("org.example.SomeThingPluginFunctionalTest", "can run task")
    
            when:
            run('check', '--rerun-tasks')
    
            then:
            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
            assertFunctionalTestPassed("org.example.SomeThingPluginFunctionalTest", "can run task")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 02 19:50:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinGradlePluginInitIntegrationTest.groovy

            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
            assertFunctionalTestPassed("org.example.SomeThingPluginFunctionalTest", "can run task")
    
            when:
            run('check', '--rerun-tasks')
    
            then:
            assertTestPassed("org.example.SomeThingPluginTest", "plugin registers task")
            assertFunctionalTestPassed("org.example.SomeThingPluginFunctionalTest", "can run task")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskOptionsGenerator.java

        @VisibleForTesting
        static final List<BuiltInOptionElement> BUILT_IN_OPTIONS = Collections.singletonList(
            new BuiltInOptionElement(
                "Causes the task to be re-run even if up-to-date.",
                "rerun",
                task -> task.getOutputs().upToDateWhen(Specs.satisfyNone())
            )
        );
    
        /**
         * Builds a list of implicit built-in options available for every task.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 28 09:20:18 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    [source]
    ----
    $./gradlew help --task hello
    
    > Task :help
    Detailed task information for hello
    
    Path
    :app:hello
    
    Type
    Task (org.gradle.api.Task)
    
    Options
    --rerun     Causes the task to be re-run even if up-to-date.
    
    Description
    A lovely greeting task.
    
    Group
    Custom
    ----
    
    As we can see, the `hello` task belongs to the `custom` group.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            file(reportsDir).exists()
    
            where:
            type   | reportsDir
            "xml"  | "build/test-results"
            "html" | "build/reports/tests"
        }
    
        def "merge rerun defaults to false"() {
            when:
            buildScript """
                $junitSetup
            """
            rerunningTest("SomeTest")
            fails "test"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginAccessorsIntegrationTest.kt

            withBuildScript(
                """
                plugins {
                    `my-plugin`
                }
                """
            )
    
            build("clean")
    
            build("clean", "--rerun-tasks")
        }
    
        @Test
        fun `accessors are available after registering plugin`() {
            withSettings(
                """
                $defaultSettingsScript
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top