Skip to content

Commit

Permalink
Re-raise exception in UDK test script
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 20, 2023
1 parent 0d3ff3a commit cc130c8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/UDKTests/setup_udk_build_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,12 @@
import os
import re
import shutil
import sys
import threading
import time
from dataclasses import asdict
from dataclasses import dataclass
from dataclasses import field
from pathlib import Path
from traceback import print_exc
from typing import IO

import httpx
Expand Down Expand Up @@ -673,7 +671,6 @@ async def main():
asyncio.run(main())
except Exception as _e:
print(f"error running main: {_e}")
print_exc()

if BUILDING_EVENT:
BUILDING_EVENT.set()
Expand All @@ -682,4 +679,4 @@ async def main():
if POKER_EVENT:
POKER_EVENT.set()

sys.exit(1)
raise

0 comments on commit cc130c8

Please sign in to comment.