You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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]
15 lines
263 B
Batchfile
Executable File
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%
|
|
)
|