jenkinsci / junit-realtime-test-reporter-plugin

Report JUnit test results in real time
https://plugins.jenkins.io/junit-realtime-test-reporter/
MIT License
6 stars 13 forks source link

Add double test source management #146

Open acatoire opened 9 months ago

acatoire commented 9 months ago

What feature do you want to see added?

It works doing this:

    realtimeJUnit(
                            testResults: '**/target/failsafe-reports/*.xml') {
                            realtimeJUnit(
                                testResults: '**/target/surefire-reports/*.xml') {

                                // checkstyle is skipped because executed dedicated stage
                                sh """
                                    bash .jenkins/mvn_build.sh
                                """
                            }
                        }

But:

Our usage can be seen on this open source repo: https://github.com/Talend/connectors-se/blob/73d84f8422fe942a76206235982473777281eefd/Jenkinsfile#L405C2-L408C1

Upstream changes

No response

Are you interested in contributing this feature?

As a QA I can contribution on the feature testing, I may find a developer for it, but I am not sure.