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?
Share
There are a couple of excellent recourses on how to use Jenkins together with Python:
The standard option would be to run the unittests, record the test coverage and run pylint or some other style checker.