Search code examples
pythontestingautomationcontinuous-integrationnightly-build

what are some of the industry wide used continous integration tool , nightly build system for Python based program


what are some of the industry wide used continuos integration tool , nightly build system for Python based program.

We want to automate the a lot of manual testing and then use daily running system to test automatically. We are using Pyunit for writing unit test.


Solution

  • Buildbot is written in python/twisted, and all of it's configuration syntax is in python, so it's very easy for python programmers to setup. A bunch of open source projects use it including python itself.

    Personally, I think it's UI leaves something to be desired compared to Jenkins/Hudson, but it's functionality is fantastic.