> The approach here will be to write your own test runner method. When
> you call 'manage.py test', Django is effectively calling a method
> called django.test.simple.run_tests(); this method sets up the test
> environment, finds the tests, runs the tests, and cleans up the test
> environment.

Thank you very much Russell, it is *exactly* what I need.

> However, you can direct django to point at a different method of your
> own choosing. Define a method like:
> 
> from django.tests.simple import run_tests

Note for other readers. Here is small typo, correct is:

from django.test.simple import run_tests


Thank you again Russell

Regards
Michal

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to