Hi,
Could someone help me on this? Why no xml report is generated from this Pipeline Script?
pipeline{
agent any
stages{
stage('Checkout'){
steps{
checkout scmGit(branches:[[name:'*/main']],
extensions:[],userRemoteConfigs:[[url:'https://github.com/raul-parada/Python-Selenium.git']])}}
stage('Build'){
steps{
git branch: 'main', url:'https://github.com/raul-parada/Python-Selenium.git'
sh 'python3 test_*.py'}}
stage('Test'){
steps{
sh 'python3 -m pytest'}}
stage('Publish junit report'){
steps{
junit allowEmptyResults:true,testResults:
'**/*.xml',skipPublishingChecks:true,
skipMarkingBuildUnstable:true}}}}
Is it located in a given place?