Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for copyRestCompatTestTask (0.45 seconds)

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

            then:
            result.task(":yamlRestTestV${compatibleVersion}CompatTest").outcome == TaskOutcome.NO_SOURCE
            result.task(':copyRestCompatApiTask').outcome == TaskOutcome.NO_SOURCE
            result.task(':copyRestCompatTestTask').outcome == TaskOutcome.NO_SOURCE
            result.task(transformTask).outcome == TaskOutcome.NO_SOURCE
        }
    
        def "yamlRestTestVxCompatTest executes and copies api and transforms tests from :bwc:minor"() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 16.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

                    task.onlyIf(t -> isEnabled(project));
                });
    
            // copy compatible rest tests
            Provider<CopyRestTestsTask> copyCompatYamlTestTask = project.getTasks()
                .register("copyRestCompatTestTask", CopyRestTestsTask.class, task -> {
                    task.dependsOn(bwcMinorConfig);
                    task.setCoreConfig(bwcMinorConfig);
                    task.setXpackConfig(bwcMinorConfig);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 16:26:11 GMT 2021
    - 11.7K bytes
    - Click Count (0)
Back to Top