Don't delete Idea temporary folder on JVM shutdown

Before parallelization we don't delete Idea folders after test execution.
  Now there is problem with failing test on Teamcity.
  So try to keep folder undeleted (maybe there is some working daemon)
This commit is contained in:
Mikhael Bogdanov
2019-04-12 13:57:00 +02:00
parent 33e7a23208
commit d5cd49b2bf
@@ -120,7 +120,7 @@ public class KotlinTestUtils {
static {
try {
IDEA_SYSTEM_PATH = tmpDirForReusableFolder("idea-system").getPath();
IDEA_SYSTEM_PATH = FileUtil.createTempDirectory(new File(System.getProperty("java.io.tmpdir")), "idea-system", "", false).getPath();
}
catch (IOException e) {
throw new RuntimeException(e);