Remove reference to bats test (#60696)

The packagingTest tasks run by CI (but not by PRs...) was still
refering to bats tasks. This commit removes those remaining references.

closes #60690
This commit is contained in:
Ryan Ernst 2020-08-05 14:58:31 -07:00 committed by Ryan Ernst
parent b883c17990
commit e641981c15
No known key found for this signature in database
GPG Key ID: 5F7EA39E15F54DCE
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ tasks.dependenciesInfo.enabled = false
tasks.thirdPartyAudit.ignoreMissingClasses()
tasks.register('destructivePackagingTest') {
dependsOn 'destructiveDistroTest', 'destructiveBatsTest.upgrade'
dependsOn 'destructiveDistroTest'
}
processTestResources {
@ -67,7 +67,7 @@ processTestResources {
subprojects { Project platformProject ->
tasks.register('packagingTest') {
dependsOn 'distroTest', 'batsTest.upgrade'
dependsOn 'distroTest'
}
vagrant {