[Solved]-Is there a way to hook Django's unittest into PyUnit in eclipse?

2👍

I would recommend using Nose for your django tests.
Pydev allows you to choose your test runner, and it has support for nose.

I’ll let stack explain why and how to integrate nose with eclipse for interactive debugging.

And i’ll throw in the django-nose too.

1👍

Here’s an adapter that lets you use the nose plugin from the django-nose package from the command line. Then you can run your django tests through the Eclipse PyUnit window via nose.

https://github.com/jenniferlianne/django_nose_adapter

Leave a comment