Files
lorry li 881a7127a7 Make sure python packages can be updated in WebTestsServer;
Added more checks in test case "Can do blocking call" of WebTests;
Added duplicated call CancelRequest in test case "Cancel http request connect before timeout" of  WebTests;
Some other code clean in WebTests.

[REVIEW] [at]stephen.ma [at]michael.kirzinger [at]rafa.lecina
#rb stephen.ma

[CL 31289833 by lorry li in ue5-main branch]
2024-02-08 09:21:28 -05:00

15 lines
263 B
Batchfile
Executable File

@echo off
if not exist env (
..\..\..\Binaries\ThirdParty\Python3\Win64\python.exe -m venv env
)
call .\env\Scripts\activate.bat
python -m pip install --upgrade pip
pip install -r requirements.txt
if %ERRORLEVEL% NEQ 0 (
rmdir /s /q env
exit %ERRORLEVEL%
)