From bbcbffd7f4104b126a60fb80964773189b603f8c Mon Sep 17 00:00:00 2001 From: Gleb Kanterov Date: Wed, 25 Sep 2024 16:35:28 +0200 Subject: [PATCH] Fix windows --- bundle/tests/python_import_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/tests/python_import_test.go b/bundle/tests/python_import_test.go index e7ac5459..ff6dd632 100644 --- a/bundle/tests/python_import_test.go +++ b/bundle/tests/python_import_test.go @@ -78,7 +78,7 @@ func activateVEnv(t *testing.T) { // we don't have shell to activate venv, updating PATH is enough var venvBinDir string - if runtime.GOOS == "Windows" { + if runtime.GOOS == "windows" { venvBinDir = pathlib.Join(venvDir, "Scripts") t.Setenv("PATH", venvBinDir+";"+os.Getenv("PATH")) } else {