mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
[gradle] Add 'sinttestAll' task
This commit is contained in:
parent
10c6e5d121
commit
eae8acb856
1 changed files with 8 additions and 0 deletions
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue