mirror of
https://github.com/blw1138/Zordon.git
synced 2025-12-17 08:48:13 +00:00
Fix issue where tests would never complete correctly
This commit is contained in:
@@ -240,7 +240,7 @@ class BaseRenderWorker(Base):
|
||||
self.status = RenderStatus.ERROR
|
||||
|
||||
# Handle completed - All else counts as failed attempt
|
||||
if (self.status == RenderStatus.COMPLETED) and not return_code:
|
||||
if (self.status == RenderStatus.RUNNING) and not return_code:
|
||||
message = (f"{'=' * 50}\n\n{self.engine.name()} render completed successfully in "
|
||||
f"{self.time_elapsed()}\n")
|
||||
f.write(message)
|
||||
|
||||
Reference in New Issue
Block a user