Search Gradle plugins

com.gradle.enterprise.test-distribution

Owner: Gradle

Gradle Enterprise test distribution takes your existing test suites and distributes them across remote agents to execute them faster.

https://docs.gradle.com/enterprise/test-distribution-gradle-plugin/

Sources: https://github.com/gradle/gradle

Version 1.1.2

Created 28 August 2020.

New in this version:

- Start of test execution is now logged on INFO level on agent side
- Improved test retry for unrolled Spock tests when using JUnit Vintage Engine 5.7.0+
- Tests failed due to assertion errors are now reported in a way compatible with IDEs that differentiate between test errors and failures when using Gradle 6.6+
- Compatibility with Gradle 6.7


Fixes in this version:

- Failures from local test executors are reported correctly
- Cycles in exception cause chains are handled properly
- Suppressed exceptions in test failures are reported correctly
- Output files received after the execution has failed no longer lead to exceptions

Compatible with Gradle Enterprise 2020.3 or later.

Using the plugins DSL:

plugins {
  id("com.gradle.enterprise.test-distribution") version "1.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.gradle.enterprise:test-distribution-gradle-plugin:1.1.2")
  }
}

apply(plugin = "com.gradle.enterprise.test-distribution")

Using the plugins DSL:

plugins {
  id "com.gradle.enterprise.test-distribution" version "1.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gradle.enterprise:test-distribution-gradle-plugin:1.1.2"
  }
}

apply plugin: "com.gradle.enterprise.test-distribution"

Learn how to apply plugins to subprojects