Skip to content

Commit

Permalink
Change "Gradle Enterprise" references to "Develocity"
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Philipp <[email protected]>
  • Loading branch information
marcphilipp committed Jan 11, 2024
1 parent 4a69684 commit 5dc9f0b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -407,9 +407,9 @@ Gradle build scans (`--scan` option) report discrete test executions as "Executi

image:gradle-build-scan-test-retry-reporting.png[Gradle build scan reporting, align="center", title="Gradle build scan test report", caption="Build scan Tests view"]

Flaky tests can also be visualized across many builds using the https://gradle.com/blog/flaky-tests/[Gradle Enterprise Tests Dashboard].
Flaky tests can also be visualized across many builds using the https://gradle.com/blog/flaky-tests/[Develocity Tests Dashboard].

image:gradle-enterprise-flaky-test-reporting.png[Gradle Enterprise top tests report, align="center", title=Gradle Enterprise top tests report]
image:gradle-enterprise-flaky-test-reporting.png[Develocity top tests report, align="center", title=Develocity top tests report]

=== IDEs

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ private static void ensureThatNoRetryExtensionIsPresent(Test testTask) {

if (retryExtensionClassName.startsWith(GRADLE_ENTERPRISE_BASE_PACKAGE)) {
throw new IllegalStateException(""
+ "The Gradle Enterprise Gradle plugin is conflicting with the Test Retry Gradle plugin "
+ "The Develocity Gradle plugin is conflicting with the Test Retry Gradle plugin "
+ "and has already added a retry extension to the test task " + testTask.getName() + ". "
+ "Please either remove the Test Retry Gradle plugin from this project "
+ "or disable the registration of the retry extension in the Gradle Enterprise Gradle plugin "
+ "or disable the registration of the retry extension in the Develocity Gradle plugin "
+ "by specifying the system property 'gradle.enterprise.testretry.enabled' and setting it to 'false'."
);
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package org.gradle.testretry

class CollidingRetryExtensionPluginFuncTest extends AbstractGeneralPluginFuncTest {

def "detects existing retry extension from Gradle Enterprise Gradle plugin"() {
def "detects existing retry extension from Develocity Gradle plugin"() {
given:
buildSrcWithEmptyClass("com.gradle.enterprise.testretry", "TestRetryExtension")

Expand All @@ -30,7 +30,7 @@ class CollidingRetryExtensionPluginFuncTest extends AbstractGeneralPluginFuncTes
def result = gradleRunner(gradleVersion).buildAndFail()

then:
result.output.contains("The Gradle Enterprise Gradle plugin is conflicting with the Test Retry Gradle plugin")
result.output.contains("The Develocity Gradle plugin is conflicting with the Test Retry Gradle plugin")

where:
gradleVersion << GRADLE_VERSIONS_UNDER_TEST
Expand Down

0 comments on commit 5dc9f0b

Please sign in to comment.