Skip to content

Commit

Permalink
Remove fancy test result logger
Browse files Browse the repository at this point in the history
Might be causing OutOfMemory issues on jenkins

Change-Id: Ifb2bae79e7cc52e07d58df436e124764da298dbc
Reviewed-on: http://review.couchbase.org/108365
Tested-by: Build Bot <build@couchbase.com>
Reviewed-by: David Nault <david.nault@couchbase.com>
  • Loading branch information
dnault committed Apr 26, 2019
1 parent db3ab63 commit fc77849
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id "com.github.jk1.dependency-license-report" version "1.2"
id 'org.unbroken-dome.test-sets' version '1.5.1'
id 'com.adarshr.test-logger' version '1.5.0'
}

import org.apache.tools.ant.filters.ReplaceTokens
Expand Down Expand Up @@ -31,18 +30,12 @@ integrationTest {
jvmArgs '-verbose:gc', '-XX:+HeapDumpOnOutOfMemoryError'
}

integrationTest.dependsOn(test)

// https://github.com/radarsh/gradle-test-logger-plugin
def runningInJenkins = System.getenv("JENKINS_URL") != null
testlogger {
theme runningInJenkins ? 'plain' : 'mocha'
showStandardStreams runningInJenkins
showPassedStandardStreams runningInJenkins
showSkippedStandardStreams runningInJenkins
showFailedStandardStreams runningInJenkins
tasks.withType(Test) {
testLogging.showStandardStreams = true
}

integrationTest.dependsOn(test)

task exhaustiveTest(group: "Verification", description: "Runs the integration tests against *all* supported server versions") {
doLast {
tasks.withType(Test) {
Expand Down

0 comments on commit fc77849

Please sign in to comment.