PY-81497: Conda doesn't support spaces in paths

https://github.com/conda/conda/blame/main/conda/core/prefix_data.py#L346

GitOrigin-RevId: 4f3959d2f36ea6bb44123b136192679311172d20
This commit is contained in:
Ilya.Kazakevich
2025-06-02 18:22:18 +02:00
committed by intellij-monorepo-bot
parent 94c426de56
commit 288637a08e

View File

@@ -108,7 +108,7 @@ class PyVirtualEnvTerminalCustomizerTest {
val (pythonBinary, venvDirName) =
if (useConda) {
val envDir = venvPath.resolve("some path with spaces")
val envDir = venvPath.resolve("some_path_with_underscores")
val sdk = createCondaEnv(condaEnv, envDir).createSdkFromThisEnv(null, emptyList())
sdkToDelete = sdk
sdk.persist()