newman -v): 4.5.7 & 4.5.6 (failing on both)npm install -g newmannewman run '$(Build.SourcesDirectory)/PostmanTests/Collections/API Integration Tests.postman_collection.json' -e '$(Build.SourcesDirectory)/PostmanTests/Environments/Development.postman_environment.json' --insecure -r cli,junitThe pipeline

Newman installed on the machine

The reporter

Steps to reproduce the problem:
-r cli,junitI have searched through open and closed issues, but only found #1969 which refers to an external reporter.
This build pipeline has been working for over a year, until it started failing on Dec. 30th, 2019.
I was having the same issue earlier while trying to use cli,json, fixed it by using quotes around it.
newman run $runnerFileFullName -e $environmentFileFullName --disable-unicode --color off --reporters 'cli,json' --reporter-json-export $reportFile
@palprabhat Huh, yea that did it for me too. Newman needs updated documentation.
Most helpful comment
I was having the same issue earlier while trying to use
cli,json, fixed it by using quotes around it.newman run $runnerFileFullName -e $environmentFileFullName --disable-unicode --color off --reporters 'cli,json' --reporter-json-export $reportFile