2012年7月30日 星期一

Jenkins PyFlakes

http://127.0.0.1:8080/pluginManager/
安裝Warnings Plug-in


http://127.0.0.1:8080/configure 

設定系統 -> Compiler Warnings -> 新增 Parser
要填入的資訊可以參考下面鏈接

http://127.0.0.1:8080/job/test_project/configure

進入專案 -> 設定 -> Add post-build action (最下面) -> Scan for compiler warnings

Build -> Add build step -> Execute shell
echo "pyflakes ...."
for f in `find . -name "*.py"`; do
pyflakes $f >> pyflakes.log
done || :

Scan for compiler warnings -> Scan workspace files

沒有留言:

張貼留言