vote up 15 vote down star
14

This is a slightly.. vain question, but BuildBot's output isn't particularly nice to look at..

For example, compared to..

..and others, BuildBot looks rather.. archaic

I'm currently playing with Hudson, but it is very Java-centric (although with this guide, I found it easier to setup than BuildBot, and produced more info)

Basically: is there any Continuous Integration systems aimed at python, that produce lots of shiney graphs and the likes?


Update: After trying a few alternatives, I think I'll stick with Hudson. Integrity was nice and simple, but quite limited. I think Buildbot is better suited to having numerous build-slaves, rather than everything running on a single machine like I was using it.

Setting Hudson up for a Python project was pretty simple:

  • Download Hudson from https://hudson.dev.java.net/
  • Run it with java -jar hudson.war
  • Open the web interface on the default address of http://localhost:8080
  • Go to Manage Hudson, Plugins, click "Update" or similar
  • Install the Git plugin (I had to set the git path in the Hudson global preferences)
  • Create a new project, enter the repository, SCM polling intervals and so on
  • Install nosetests via easy_install if it's not already
  • In the a build step, add nosetests --with-xunit --verbose
  • Check "Publish JUnit test result report" and set "Test report XMLs" to **/nosetests.xml

That's it. You can setup various notifiers, install the SLOCCount plugin to count lines of code (and graph it!), use the Violations plugin to parse the PyLint output (you can setup warning thresholds, graph the number of violations over each build)

flag

Great question, I am looking into similar things just right now. If you go one route, can you share your experience with the rest of us? – AndrĂ© Oct 22 '08 at 15:02

3 Answers

vote up 1 vote down check

You might want to check out Nose and NoseXUnit. You can have it run pylint, your unit tests, and coverage checks with this command:

nosetests --with-nosexunit --enable-audit --enable-cover

That'll be helpful if you want to go the Hudson route or if you want to use another CI server that has support for JUnit test reporting.

(And yes, you realize how regrettable a name NoseXUnit is when you see it in all-lowercase :-/ )

link|flag
1  
Ah the joys of open-source application names.. – dbr Mar 21 at 9:13
Nose now includes the xunit plugin by default - nosetests --with-xunit – dbr Oct 13 at 1:01
vote up 4 vote down

Don't know if it would do : Bitten is made by the guys who write Trac and is integrated with Trac. Apache Gump is the CI tool used by Apache. It is written in Python.

link|flag
vote up 3 vote down

We've had great success with TeamCity as our CI server and using nose as our test runner. Teamcity plugin for nosetests gives you count pass/fail, readable display for failed test( that can be E-Mailed). You can even see details of the test failures while you stack is running.

If of course supports things like running on multiple machines, and it's much simpler to setup and maintain than buildbot.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.