Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for rerun (0.11 sec)

  1. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

    class RerunFlakyTest(os: Os, arch: Arch = Arch.AMD64) : BuildType({
        val id = "Util_RerunFlakyTest${os.asName()}${arch.asName()}"
        name = "Rerun Flaky Test - ${os.asName()} ${arch.asName()}"
        description = "Allows you to rerun a selected flaky test 10 times"
        id(id)
        val testJvmVendorParameter = "testJavaVendor"
        val testJvmVersionParameter = "testJavaVersion"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/tests/help.out

    Options
         --format     Output format of the project information.
                      Available values are:
                           JSON
                           PLAIN
    
         --rerun     Causes the task to be re-run even if up-to-date.
    
    Description
         Displays current project info
    
    Group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 421 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationIntegrationTest.groovy

            'Exec'           | 'execTask'
            'project.exec'   | 'projectExecTask'
            'JavaExec'       | 'javaExec'
            'blocking tasks' | 'blockingCustomTask'
        }
    
        def "task gets rerun after cancellation when buildcache = #buildCacheEnabled and ignoreExitValue = #ignoreExitValue"() {
            given:
            file('outputFile') << ''
            blockCode()
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 04:31:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Groovy compilation avoidance is an incubating feature")
    
            when:
            configurationCacheRun("compileGroovy", "--rerun-tasks")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("Groovy compilation avoidance is an incubating feature")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/DefaultPerformanceExecutionDataProvider.java

        }
    
        @Override
        protected TreeSet<PerformanceReportScenario> queryExecutionData(List<PerformanceTestExecutionResult> scenarioExecutions) {
            // scenarioExecutions contains duplicate scenarios because of rerun
            return scenarioExecutions.stream()
                .collect(groupingBy(PerformanceTestExecutionResult::getPerformanceExperiment))
                .values()
                .stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/IncrementalJavaProjectBuildIntegrationTest.groovy

            jar.assertHasNotChangedSince(snapshot);
    
            sleep 1000 // Some filesystems (ext3) have one-second granularity for lastModified, so bump the time to ensure we can detect a regenerated file
            executer.withArguments("--rerun-tasks").withTasks("jar").run();
    
            jar.assertHasChangedSince(snapshot);
            snapshot = jar.snapshot();
    
            executer.withTasks("jar").run();
            jar.assertHasNotChangedSince(snapshot);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionModeResolverTest.groovy

            then:
            state == DefaultTaskExecutionMode.incremental()
            1 * taskProperties.hasDeclaredOutputs() >> true
            1 * upToDateSpec.isSatisfiedBy(task) >> true
            0 * _
        }
    
        def "--rerun-tasks enabled"() {
            when:
            startParameter.setRerunTasks(true)
            def state = repository.getExecutionMode(task, taskProperties)
    
            then:
            state == DefaultTaskExecutionMode.rerunTasksEnabled()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            updatedCacheFile == originalCacheFile
            updatedModificationTimes > originalModificationTime
    
            where:
            rerunMethod << ["--rerun-tasks", "-PupToDateWhenFalse=true"]
        }
    
        def "cached tasks are re-executed with per-task rerun"() {
            expect:
            cacheDir.listFiles() as List == []
    
            when:
            withBuildCache().run "compileJava", "jar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        PULL_REQUEST_FEEDBACK("Pull Request Feedback", "Run various functional tests", "PullRequestFeedback"),
        READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
        READY_FOR_RELEASE("Ready for Release", "Once a day: Rerun tests in more environments", "ReadyforRelease"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesFilesMiscIntegrationTest.groovy

                reportsDir.createDir().file('my-report.pdf').touch()
                reportsDir.file('numbers.csv').touch()
    
                executer.inDirectory(dslDir)
                succeeds("moveReports", "--rerun-tasks")
    
                dslDir.file("build/toArchive").deleteDir()
            }
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("files/misc")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top