如何在詹金斯执行邮递员测试?

时间:2016-11-16 09:50:06

标签: git testing jenkins automation postman

我收集了邮递员并存储在git中 如何判断Jenkins在单元测试或集成测试后执行postman测试?

提前谢谢

2 个答案:

答案 0 :(得分:1)

你可以使用Newman,它是Postman创建的Collection Command Line Runner,是你可以解决这个问题的最佳解决方案,我即将在ConcourseCI上实现它,但你也可以用Jenkins来实现它。 / p>

由于您已经将集合导出并存储在git中,因此很容易实现运行它的命令,请试一试!

以下是纽曼的链接: https://www.getpostman.com/docs/newman_intro

答案 1 :(得分:0)

最好的方法是使用Newman。您必须导出集合,并且可以使用newman在命令行界面中执行同一集合,还可以提取JSON,HTML..ect格式的报告

您可以参考https://www.getpostman.com/docs/v6/postman/collection_runs/command_line_integration_with_newman

您可以通过Jenkin用相同的命令触发构建。

这是詹金(Jenkin)的例子 enter image description here