Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for yamlRestTestV (0.06 seconds)

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

            plugins {
              id 'elasticsearch.yaml-rest-compat-test'
            }
            """
    
            when:
            def result = gradleRunner("yamlRestTestV${compatibleVersion}CompatTest", '--stacktrace').build()
    
            then:
            result.task(":yamlRestTestV${compatibleVersion}CompatTest").outcome == TaskOutcome.NO_SOURCE
            result.task(':copyRestCompatApiTask').outcome == TaskOutcome.NO_SOURCE
    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

                });
    
          
            // transform the copied tests task
            TaskProvider<RestCompatTestTransformTask> transformCompatTestTask = project.getTasks()
                .register("yamlRestTestV"+ compatibleVersion + "CompatTransform", RestCompatTestTransformTask.class, task -> {
                    task.getSourceDirectory().set(copyCompatYamlTestTask.flatMap(CopyRestTestsTask::getOutputResourceDir));
    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