I'm facing an issue with newman. Actually, i'm trying to do a script to run all collections in one time. But at some point, the script failed and the last collections are not running.
Can someone suggest me a solution ?
the script that i'm using :
for collection in postman/*.json; do newman run ${collection} --reporters cli,html --reporter-html-export `basename ${collection} | awk '{gsub(".json",".html", $1);print $1}'` --insecure;done