Disable finalizing by 'cleanTestKitDir' for 'kgpDaemonTests' task.

Seems jna dependency file descriptor is leaking on Windows agents,
leading to '.testKitDir' directory remove error.
This commit is contained in:
Yahor Berdnikau
2021-11-02 15:12:04 +01:00
parent 6622846bc1
commit a29dfb3b48
@@ -230,7 +230,8 @@ val daemonsTestsTask = tasks.register<Test>("kgpDaemonTests") {
includeEngines("junit-jupiter")
}
if (isTeamcityBuild) finalizedBy(cleanTestKitCacheTask)
// Disabled cause jna dependency FD is leaking on windows agents
//if (isTeamcityBuild) finalizedBy(cleanTestKitCacheTask)
}
val otherPluginsTestTask = tasks.register<Test>("kgpOtherTests") {