Files

18 lines
478 B
C#
Raw Permalink Normal View History

2026-01-08 16:50:20 +00:00
using UnityEngine.TestTools;
namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
{
internal class PostbuildCleanupTask : BuildActionTaskBase<IPostBuildCleanup>
{
public PostbuildCleanupTask() : base(new PostbuildCleanupAttributeFinder())
{
RunOnError = ErrorRunMode.RunAlways;
}
protected override void Action(IPostBuildCleanup target, TestJobData testJobData)
{
target.Cleanup();
}
}
}