We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ca790eb + b36782e commit 7bffa76Copy full SHA for 7bffa76
1 file changed
MCPForUnity/Editor/Services/TestJobManager.cs
@@ -501,6 +501,10 @@ internal static TestJob GetJob(string jobId)
501
if (_currentJobId == jobId)
502
{
503
_currentJobId = null;
504
+ // Keep TestRunStatus in sync: when initialization times out, neither
505
+ // RunStarted nor RunFinished fires, so the running flag would otherwise leak.
506
+ // Only clear it if this job is still the active one — a newer job may have taken over.
507
+ TestRunStatus.MarkFinished();
508
}
509
shouldPersist = true;
510
0 commit comments