views:

204

answers:

1

I'm looking for a good tutorial on Python unit testing in Eclipse, particularly using PyDev.

I am working on a fairly large project using Eclipse. I've built several test suites that are working nicely, but I'm intrigued by the large number of additional unit testing features in PyDev. I've tried to work with them some, but it's gone fairly badly.

Can you suggest good resources for getting to know PyDev's testing features and the best ways to leverage them?

+1  A: 

Try nose integration.

You can use Eclipse to auto-build with nosetests: http://www.machine-envy.com/blog/2006/07/29/automated-python-testing-with-nose-and-eclipse/

Lionel