From a9123e84ab47bbb69203468c459230d92994b624 Mon Sep 17 00:00:00 2001 From: Giorgos Sgouridis Date: Wed, 3 Jul 2024 19:05:40 +0200 Subject: [PATCH] use absolute path with ReportUnit() --- build/scripts/test.cake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/scripts/test.cake b/build/scripts/test.cake index aea419e..9010fe7 100644 --- a/build/scripts/test.cake +++ b/build/scripts/test.cake @@ -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 =>