开发者

python continuous integration

开发者 https://www.devze.com 2023-03-18 23:36 出处:网络
I am looking to set up a continuous integration server for a python project. Normally this would build the project however as python is not built as such, what should be done instead? Just unit tests?

I am looking to set up a continuous integration server for a python project. Normally this would build the project however as python is not built as such, what should be done instead? Just unit tests? Or are there additional steps 开发者_运维知识库that anyone can recommend?


There are a couple of excellent recourses on how to use Jenkins together with Python:

  • Talk from PyCon
  • A blog post.
  • Another blog post.

The standard option would be to run the unittests, record the test coverage and run pylint or some other style checker.


Using Jenkins/Hudson for continuous integration is the standard approach.

0

精彩评论

暂无评论...
验证码 换一张
取 消