From 9e1b4bc3e6ef4961e5320b08ddc4b6a20f5ad6e0 Mon Sep 17 00:00:00 2001 From: Harrison Date: Sat, 29 Feb 2020 14:19:21 -0500 Subject: [PATCH] Added .xml extension to results as well as fix relative path issues. --- jenkins_test.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jenkins_test.sh b/jenkins_test.sh index e0bd6bf..340da49 100644 --- a/jenkins_test.sh +++ b/jenkins_test.sh @@ -2,11 +2,11 @@ #Tests mkdir -p TestFiles cd RecrownedGTK.Tests -TestFiles/NUnit.Runners/NUnit.ConsoleRunner.3.11.1/tools/nunit3-console.exe "RecrownedGTK.Tests.csproj" --result=nunit3 --work="TestFiles" +../TestFiles/NUnit.Runners/NUnit.ConsoleRunner.3.11.1/tools/nunit3-console.exe "RecrownedGTK.Tests.csproj" --result=nunit3 --work="TestFiles" cd .. -mv TestFiles/nunit3 TestFiles/RecrownedGTK.Tests +mv TestFiles/nunit3 TestFiles/RecrownedGTK.Tests.xml cd RecrownedGTK.Tools.Tests -TestFiles/NUnit.Runners/NUnit.ConsoleRunner.3.11.1/tools/nunit3-console.exe "RecrownedGTK.Tools.Tests.csproj" --result=nunit3 --work="TestFiles" +../TestFiles/NUnit.Runners/NUnit.ConsoleRunner.3.11.1/tools/nunit3-console.exe "RecrownedGTK.Tools.Tests.csproj" --result=nunit3 --work="TestFiles" cd .. -mv TestFiles/nunit3 TestFiles/RecrownedGTK.Tools.Tests \ No newline at end of file +mv TestFiles/nunit3 TestFiles/RecrownedGTK.Tools.Tests.xml \ No newline at end of file