在使用Jenkins的 shell command 里面 执行 python 脚本时,我们希望在构建shell脚本时可以实时输出日志,但是在构建python脚本时,是等到python执行完成以后,才显示结果,这个对于我们判断脚本执行状态非常不友好。
而之所以会出现这种情况,是因为python默认是有缓存的,所以我们需要禁用输入输出的缓存即可,具体操作如下:
python -u ./jenkins_run_test.py
python -u python脚本
可以使用. python --help 查看-u功能
-u : unbuffered binary stdout and stderr;