From eae8acb856075a3d43a73a42c76591e9489c0d17 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Tue, 26 May 2020 09:54:06 +0200 Subject: [PATCH] [gradle] Add 'sinttestAll' task --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index 96dcab393..0bdce4c74 100644 --- a/build.gradle +++ b/build.gradle @@ -662,6 +662,14 @@ task omemoSignalIntTest { dependsOn project(':smack-omemo-signal-integration-test').tasks.run } +task sinttestAll { + description 'Run all of Smack\'s integration tests.' + dependsOn {[ + integrationTest, + omemoSignalIntTest, + ]} +} + def getGitCommit() { def dotGit = new File("$projectDir/.git") if (!dotGit.isDirectory()) return 'non-git build'