Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题

1.问题

上面描述已经说了,失败的原因,就是因为没有从目标目录下找的测试报告文件report.html文件,因为在D:program files/nodejs/golal运行newman生成测试报告会出现在目录下,而不是C:user/venus/.jenkins/...目录下。
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第1张图片
解决方法不知道,后来的构建写法就没有采用下面这种方式了。(用这种当时是因为当时的newman被警告不是内外部命令
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第2张图片
还是直接newman
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第3张图片
当然我用newman这种构建也出现了问题,就是命令无效的问题
,网上查了一下,发现大家说是因为Jenkins无法获取本地环境变量,所以你的什么newman,node,npm都是无效的。
然后我看网上说用newman全部路径试试的,他们的路径在c:盘的一个global中,你想看自己的在哪里,就是直接在终端输入where newman 查看。
因为我更改了缓存cache和全局存储路径在D:盘下,我直接d:就不行,只能先用指令切换到newman所处的目录下,执行newman。当然新的问题你们已经知道了,就是上面的This is especially strange since your build otherwise succeeded。

原因就是报告生成位置不是目标目录。这个我不会解决。

2.解决

废话解释一大堆,最后想要运行成功很简单
构建直接使用newman

newman run "C:\Users\Venus\Desktop\ihrm\ihrmtest.postman_collection.json" -e "C:\Users\Venus\Desktop\ihrm\ihrmtest1.0.postman_environment.json" -r html --reporter-html-export report.html

然后配置环境变量。
有人通过配全局解决了,我不行。
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第4张图片
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第5张图片
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第6张图片找的全局属性把本地path里的都复制上去:
查询本地path的方法就是,打开终端cmd,直接输入path回车。
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第7张图片

填写完毕点击应用点击保存。

如果你解决了就可以了,如果你也不行,那就配置从节点
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第8张图片
Jenkins:This is especially strange since your build otherwise succeeded.及不是内外部指令问题_第9张图片
填完点击应用保存。
再跑一遍试试。

如果有人愿意告诉我为什么配置全局环境变量无效,配置从节点就可以,就更好了,毕竟我还是不懂。

你可能感兴趣的:(自动化测试,jenkins,运维)