Am running the postman collection in Bitbucket with parallel run & run result is pass but htmlextra report is missing.
am using below code in ym file. Can someone assist on this plz ?
pipelines:
default:
- step:
name: I - Scenarios
script: # Modify the commands below to build your repository.
- npm install -g newman
- npm install -g newman-reporter-html
- npm install -g newman-reporter-htmlextra
- newman --version
- parallel:
- step:
name : Scenario1
script:
- newman run ./aa/bb/Scenario1.postman_collection.json -e ./aa/bb/Scenario1.json --reporters cli,htmlextra --reporter-htmlextra-export testReport.html --delay-request 500
- step:
name : Scenario2
script:
- newman run ./aa/bb/Scenario2.postman_collection.json -e ./aa/bb/Scenario2_environment.json --reporters cli,htmlextra --reporter-htmlextra-export testReport.html --delay-request 500
artifacts:
- testReport.html