Gradle integTest task depending on default check task
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Fri, 30 Dec 2016 05:06:53 +0000 (06:06 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Fri, 30 Dec 2016 05:06:53 +0000 (06:06 +0100)
SpringJava/Gradle/spring-jpa-persistence/build-integTest.gradle

index e5fa060..4b3913d 100644 (file)
@@ -14,6 +14,8 @@ configurations {
 task integTest(type: Test) {
     // dependsOn startApp
     // finalizedBy stopApp
+    description = 'Runs integration tests';
+    group = 'verification';
 
     testClassesDir = sourceSets.integTest.output.classesDir
     classpath = sourceSets.integTest.runtimeClasspath
@@ -25,7 +27,6 @@ task integTest(type: Test) {
     // mustRunAfter test
 }
 
-
 integTest.doFirst {
     // It is required in order to run data bases in random ports.
     // We need it for running tests from IDE and from command console but
@@ -43,3 +44,5 @@ dockerCompose {
     removeContainers = true
     buildBeforeUp = false
 }
+
+project.tasks.check.dependsOn(integTest)