Skip to content

Commit

Permalink
Merge pull request #2 from gsgou/feature/upgrade-cake-4
Browse files Browse the repository at this point in the history
use absolute path with ReportUnit()
  • Loading branch information
AdaskoTheBeAsT authored Jul 5, 2024
2 parents f5a8a06 + a9123e8 commit 5bbb4cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/scripts/test.cake
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ Task("Run-Unit-Tests")

if (testNames.Count > 0)
{
ReportUnit(testResultsDir);
string reportPath = System.IO.Path.GetFullPath(testResultsDir);
ReportUnit(reportPath);
}
})
.OnError(exception =>
Expand Down

0 comments on commit 5bbb4cf

Please sign in to comment.