From 8102197b03a6563eddf51c4271ba610610e08a33 Mon Sep 17 00:00:00 2001 From: "Achim H." Date: Tue, 5 May 2026 08:59:48 +0200 Subject: [PATCH] changed Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1699111..1ffdc22 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 --no-build --configuration Release --logger "junit;LogFileName=results.xml;MethodDisplay=ClassAndMethod"' + sh 'dotnet test MyHelloWorld.Tests/MyHelloWorld.Tests.csproj --no-build --configuration Release --logger "junit;LogFileName=results.xml;MethodDisplay=ClassAndMethod"' } } }