Fix windows

This commit is contained in:
Gleb Kanterov 2024-09-25 16:35:28 +02:00
parent 6b4641c530
commit bbcbffd7f4
No known key found for this signature in database
GPG Key ID: 4D87C640DBD00176
1 changed files with 1 additions and 1 deletions

View File

@ -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 {