批量执行newman

shell脚本

#!/bin/bash
for item in `ls collection_dir`
do
  col=${item%%.*}
  echo $col
newman run collection_dir/${item} --reporters cli,html,junit \
--environment dev.postman_environment.json \
--reporter-html-export ${col}-result.html \
--reporter-junit-export ${col}-result.xml
done

其中${item%%.*}表示从右边开始删除,直到最后一个.号,比如demo.postman_collection.json,处理之后,变成demo

doc

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容