We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e3e6bb commit 7740f55Copy full SHA for 7740f55
1 file changed
test/e2e/Tests/build-e2e-test.ps1
@@ -136,16 +136,19 @@ else
136
if (!$SkipBuild)
137
{
138
EnsureValidPythonVersion
139
+ Set-Location $E2EAppProjectDirectory
140
141
if (!(Test-Path $E2EAppVenvDirectory)) {
142
Write-Host "Creating virtual environment for Python app"
- python -m venv $E2EAppVenvDirectory
143
+ python -m venv .venv
144
}
145
else {
146
Write-Host "Virtual environment already exists at $E2EAppVenvDirectory"
147
148
- . "$E2EAppVenvDirectory\Scripts\Activate.ps1"
149
+ Set-Location ".venv/Scripts"
150
+
151
+ .\activate
152
153
python -m pip install --upgrade pip
154
python -m pip install -r "$E2EAppProjectDirectory\requirements.txt" --upgrade
0 commit comments