Files
UnrealEngineUWP/Engine/Source/Programs/WebTestsServer/createenv.bat
lorry li 96b55c1d11 Make sure the web server process can be closed properly when run web tests on automation tool, to fix the pipeline not closed warning;
Fix the low level report parser error, when there are sections in test cases.

#jira UE-182678
[REVIEW] [at]chris.constantinescu [at]stephen.ma

[CL 27596208 by lorry li in ue5-main branch]
2023-09-05 10:35:43 -04:00

15 lines
306 B
Batchfile
Executable File

@echo off
if exist env (
call .\env\Scripts\activate.bat
) else (
..\..\..\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%
)
)