From c8ec4b3254e4ee23ed3a09d789ec3e4158d5ae26 Mon Sep 17 00:00:00 2001 From: "Achim H." Date: Tue, 5 May 2026 09:50:01 +0200 Subject: [PATCH] changed dotnet test cmd --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1ffdc22..ad0cc72 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,7 +39,7 @@ pipeline { steps { container('dotnet8') { // Erstellt eine XML-Datei im Format 'junit', die Jenkins lesen kann - sh 'dotnet test MyHelloWorld.Tests/MyHelloWorld.Tests.csproj --no-build --configuration Release --logger "junit;LogFileName=results.xml;MethodDisplay=ClassAndMethod"' + sh 'dotnet test --configuration Release' } } }