From 2daa8098c9fd1e7e191f83276768e1177735a876 Mon Sep 17 00:00:00 2001 From: Andras Slemmer Date: Tue, 28 Jun 2016 16:46:45 +0100 Subject: [PATCH] build: add integrationTest as a test dependency --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 99ee6ad948..69f11733df 100644 --- a/build.gradle +++ b/build.gradle @@ -129,6 +129,7 @@ task integrationTest(type: Test) { testClassesDir = sourceSets.integrationTest.output.classesDir classpath = sourceSets.integrationTest.runtimeClasspath } +test.dependsOn(integrationTest) tasks.withType(Test) { reports.html.destination = file("${reporting.baseDir}/${name}")