Python: kill conda in tests.

Conda might be frozen, but that is not a reason to break the whole suite

GitOrigin-RevId: 491b58621ddf01ffa15353ee3d19056d98df549e
This commit is contained in:
Ilya.Kazakevich
2025-07-01 20:55:53 +00:00
committed by intellij-monorepo-bot
parent 3eadc38e05
commit 0055748341
2 changed files with 15 additions and 2 deletions
@@ -26,5 +26,5 @@ fun getProcessLockedPath(path: Path): Result<List<ProcessHandle>, @NlsSafe Strin
fun deleteCheckLocking(path: Path, vararg processesToKillIfLocked: Regex = arrayOf(PYTHON)): Unit = deleteCheckLockingImpl(path, *processesToKillIfLocked)
private val PYTHON = Regex("^(python|pip)[0-9.]*\\.exe$")
private val PYTHON = Regex("^(python|pip|conda)[0-9.]*\\.exe$")