Do not fail if not found integration tests
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Mon, 23 Jan 2017 08:02:30 +0000 (09:02 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Mon, 23 Jan 2017 08:02:30 +0000 (09:02 +0100)
SpringJava/Gradle/build-integTest.gradle

index 177e2ed..e4c69fd 100644 (file)
@@ -31,9 +31,12 @@ task integTest(type: Test) {
     classpath = sourceSets.integTest.runtimeClasspath
     reports.junitXml.destination = "${buildDir}/test-results/test"
 
+
+
     // explicitly include or exclude tests
     filter {
         includeTestsMatching "*IntegrationShould"
+        failOnNoMatchingTests = false
     }
 
     testLogging {