diff --git a/.github/workflows/udk-tests.yaml b/.github/workflows/udk-tests.yaml index 58a3302..c18d222 100644 --- a/.github/workflows/udk-tests.yaml +++ b/.github/workflows/udk-tests.yaml @@ -50,9 +50,14 @@ jobs: - run: python --version - name: Run UDK build and test script - timeout-minutes: 5 + timeout-minutes: 1 run: python .\tests\UDKTests\setup_udk_build_env.py + - name: TEST TODO + timeout-minutes: 1 + if: always() + run: .\tests\UDKTests\UDK-Lite\Binaries\Win64\UDK.com make -useunpublished + - name: Archive UDK build and test logs uses: actions/upload-artifact@v3 if: always() diff --git a/tests/UDKTests/setup_udk_build_env.py b/tests/UDKTests/setup_udk_build_env.py index e76a522..c33923b 100644 --- a/tests/UDKTests/setup_udk_build_env.py +++ b/tests/UDKTests/setup_udk_build_env.py @@ -262,8 +262,8 @@ async def run_udk_build( cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" ' f'-ArgumentList "make","-useunpublished","-UNATTENDED","LOG=Launch.log",' f'"-NOPAUSE","-FORCELOGFLUSH","-AUTO"', - stdout=asyncio.subprocess.PIPE, - stderr=asyncio.subprocess.STDOUT, + # stdout=asyncio.subprocess.PIPE, + # stderr=asyncio.subprocess.STDOUT, ) else: proc = await asyncio.create_subprocess_exec( @@ -321,8 +321,8 @@ async def run_udk_server( cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" ' f'-ArgumentList "server","{udk_args}","-UNATTENDED","LOG=Launch.log",' f'"-NOPAUSE","-FORCELOGFLUSH","-AUTO"', - stdout=asyncio.subprocess.PIPE, - stderr=asyncio.subprocess.STDOUT, + # stdout=asyncio.subprocess.PIPE, + # stderr=asyncio.subprocess.STDOUT, ) else: test_proc = await asyncio.create_subprocess_exec(