diff --git a/build.gradle b/build.gradle index 9c76bb3cf..1e4cc2a95 100644 --- a/build.gradle +++ b/build.gradle @@ -95,11 +95,6 @@ tasks.build.dependsOn(tasks.checkLicense) // Provide defaults for all of the project properties. -// showAllOutput: boolean. If true, dump all test output during the build. -if (!project.hasProperty('showAllOutput')) { - ext.showAllOutput = 'false' -} - // Only do linting if the build is successful. gradleLint.autoLintAfterFailure = false @@ -243,10 +238,6 @@ subprojects { if (['util', 'proxy', 'core', 'prober'].contains(project.name)) return - test { - testLogging.showStandardStreams = Boolean.parseBoolean(showAllOutput) - } - ext.relativePath = "google/registry/${project.name}" sourceSets.each { diff --git a/core/build.gradle b/core/build.gradle index d77c1186d..380322a3b 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -568,9 +568,6 @@ task fragileTest(type: Test) { // Run every test class in a freshly started process. forkEvery 1 - - // Uncomment to see test outputs in stdout. - //testLogging.showStandardStreams = true } task outcastTest(type: Test) {