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"' } } }