Hi there,

I'm using Jenkins 2.7.1 with Pipeline 2.2.
My Jenkinsfile uses parallel to execute 2 type of tests but I don't have an 
aggregation of test results. I only get one of them:

stage "Test"
parallel 'rest-c6-php53-httpd22-mysql51': {
    node('docker') {
            checkout scm
            sh "docker run --rm -v "+pwd()+":/usr/share/tuleap -v 
"+pwd()+":/output enalean/tuleap-test-rest:c6-php53-httpd22-mysql51"
            step([$class: 'JUnitResultArchiver', testResults: 
'rest_tests.xml'])
    }
}, 'rest-c6-php56-httpd24-mysql56': {
    node('docker') {
        checkout scm
        sh "docker run --rm -v "+pwd()+":/usr/share/tuleap -v 
"+pwd()+":/output enalean/tuleap-test-rest:c6-php56-httpd24-mysql56"
        step([$class: 'JUnitResultArchiver', testResults: 'rest_tests.xml'])
    }
}

In the test result I only get 254 tests, whereas it's actually 512 tests 
that are executed (254 in each node).

Is that expected ?

Note: if I rename on of the junit files (rest_test.xml) I can see the 512 
tests.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b5663092-833a-4bbd-9432-695b4832f70f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to