Python continuous integration

I want to create a continuous integration server for a python project. Normally this would create a project, but since python was not built as such, what should be done instead? Just unit tests? Or are there additional steps that anyone can recommend?

+8
python continuous-integration
source share
2 answers

There are some great resources on using Jenkins with Python:

A standard option would be to run unittests, record test coverage, and run pylint or another style check.

+12
source share

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

0
source share

All Articles