QA亮子的记事本

记录开发测试中碰到的问题和解决办法

导航

如何在Jenkins CI 里调试

背景

厂内的CI系统把 Jenkins 和Github 连接了起来,这样Dev 只要通过github pr 就能够了解到测试job 运行的情况。有的时候,Dev会找到QA问,如何在Jenkins CI 里面调试代码,所以就有了这篇小指导

步骤

  1. Open job url
    这里写图片描述

  2. Open console log to find which slave runs this job and where is the workspace
    这里写图片描述

  3. login the slave machine and go to the workspace

  4. Set the breakpoint. For python, usually
     

    import pdb; pdb.set_trace()

     

  5. Run the test

posted on 2016-12-08 18:03  sdet_liang  阅读(604)  评论(0编辑  收藏  举报