Remove the "showAllOutput" property from the build (#247)

* Remove the "showAllOutput" property from the build

It doesn't work very well and has been superseded by "verboseTestOutput",
which does the same thing and more.
This commit is contained in:
Michael Muller 2019-08-30 10:43:07 -04:00 committed by GitHub
parent a9d2136e79
commit 439aa01ee6
2 changed files with 0 additions and 12 deletions

View file

@ -95,11 +95,6 @@ tasks.build.dependsOn(tasks.checkLicense)
// Provide defaults for all of the project properties. // 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. // Only do linting if the build is successful.
gradleLint.autoLintAfterFailure = false gradleLint.autoLintAfterFailure = false
@ -243,10 +238,6 @@ subprojects {
if (['util', 'proxy', 'core', 'prober'].contains(project.name)) return if (['util', 'proxy', 'core', 'prober'].contains(project.name)) return
test {
testLogging.showStandardStreams = Boolean.parseBoolean(showAllOutput)
}
ext.relativePath = "google/registry/${project.name}" ext.relativePath = "google/registry/${project.name}"
sourceSets.each { sourceSets.each {

View file

@ -568,9 +568,6 @@ task fragileTest(type: Test) {
// Run every test class in a freshly started process. // Run every test class in a freshly started process.
forkEvery 1 forkEvery 1
// Uncomment to see test outputs in stdout.
//testLogging.showStandardStreams = true
} }
task outcastTest(type: Test) { task outcastTest(type: Test) {