Clean to ensure that the tests run.

This commit is contained in:
Rashad Sookram 2022-02-08 12:01:44 -05:00 committed by Alex Hart
parent 0877d6a25e
commit 5c03608c8f

View file

@ -71,7 +71,7 @@ subprojects {
task qa {
group 'Verification'
description 'Quality Assurance. Run before pushing'
dependsOn 'testReleaseUnitTest', 'lintRelease'
dependsOn 'clean', 'testReleaseUnitTest', 'lintRelease'
}
}
}
@ -79,9 +79,14 @@ subprojects {
task qa {
group 'Verification'
description 'Quality Assurance. Run before pushing.'
dependsOn ':Signal-Android:testPlayProdReleaseUnitTest',
dependsOn 'clean',
':Signal-Android:testPlayProdReleaseUnitTest',
':Signal-Android:lintPlayProdRelease',
'Signal-Android:ktlintCheck',
':libsignal-service:test',
':Signal-Android:assemblePlayProdRelease'
}
task clean(type: Delete) {
delete rootProject.buildDir
}