尝试在“执行 Shell”中运行一个命令以及 Jenkins(以前称为 hudson)中“build”下的 python 脚本
这些在 linux (ubuntu) 的命令行上运行,但是当尝试通过 hudson 运行它们时,只有第一个(第一个)显示在控制台中输出
来自评论:
- notests -s --with -coverage --cover-package prus find . -name "*test.py"
- pylint --rcfile 脚本/pylintrc -f 可解析 prus > pylint.txt echo "pylint Complete"
- sloccount --wide --details prus > sloccount.sc
These run on the command line in linux (ubuntu) but when trying to run them via hudson, only the first one (first one) shows up in the console Output
From comment:
- nosetests -s --with-coverage --cover-package prus find . -name "*test.py"
- pylint --rcfile scripts/pylintrc -f parseable prus > pylint.txt echo "pylint complete"
- sloccount --wide --details prus > sloccount.sc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您将 2 的输出通过管道传输到 pylint.txt,而 3 则通过管道传输到 sloccount.sc。您需要通过管道连接到标准输出和文件,以便填充文件,并将输出发送到 Hudson。看一下 tee.exe,它会为你做这件事。
It looks like your piping the output from 2 into pylint.txt, and 3 is being piped into sloccount.sc. You need to pipe to both stdout and to the file in order to get your files populates, as well as have the output go to Hudson. Take a look at tee.exe, it will do that for you.