Python: refactoring before interpreters service.

Extract various classes to the shared modules, `ExecutablePython` now has `env` map as it can be used by conda.

GitOrigin-RevId: eb45ea29f49132fa4f91c979f71453e6a2ade344
This commit is contained in:
Ilya.Kazakevich
2025-06-08 04:14:00 +00:00
committed by intellij-monorepo-bot
parent 088eb4ef09
commit 107201d413
16 changed files with 63 additions and 38 deletions
@@ -1,4 +1,4 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.python.junit5Tests.framework.env
/**
@@ -8,7 +8,7 @@ package com.intellij.python.junit5Tests.framework.env
* Example:
* ```kotlin
* @Test
* fun checkPythonPath(@PythonSdkPath path: Path) // Path is python.exe for example
* fun checkPythonPath(@PythonSdkPath path: PythonBinary) // Path is python.exe for example
* ```
*/