Skip to content

Commit

Permalink
Merge pull request #101 from nebula-plugins/revert-100-enhance-deprec…
Browse files Browse the repository at this point in the history
…ation-detection

Revert "Handle more gradle deprecation warnings to fail integration tests"
  • Loading branch information
rpalcolea authored Dec 11, 2018
2 parents 682120f + 2bcfea7 commit 5963600
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main/groovy/nebula/test/BaseIntegrationSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,7 @@ abstract class BaseIntegrationSpec extends Specification {

protected static void checkForDeprecations(String output) {
def deprecations = output.readLines().findAll {
it.contains("has been deprecated and is scheduled to be removed in Gradle") ||
it.contains("Deprecated Gradle features were used in this build") ||
it.contains("has been deprecated. This is scheduled to be removed in Gradle") ||
it.contains("This behaviour has been deprecated and is scheduled to be removed in Gradle")
it.contains("has been deprecated and is scheduled to be removed in Gradle") || it.contains("Deprecated Gradle features were used in this build")
}
// temporary for known issue with overwriting task
// overridden task expected to not be needed in future version
Expand Down

0 comments on commit 5963600

Please sign in to comment.