On Thu, Dec 10, 2009 at 8:24 AM, Phlip <phlip2...@gmail.com> wrote:
> Djangoes:
>
> Here's a sketch of an XmlTestRunner.
>
> http://pypi.python.org/pypi/XmlTestRunner/0.16654
>
> The point is to decorate all the test names (and asserts?), and show
> them off, probably with XSLT to HTML to a web page.
>
> To plug a new test runner into Django, you apparently add to
> settings.py:
>
> TEST_RUNNER='doj.test.xmlrunner.run_tests'

This is correct - assuming that xmlrunner has a run_tests method.

> However, the above module has no run_tests() method.
>
> Is there some way to adapt it? Or is there some other way to get
> structured output for formatting?

The run_tests method is a Django specific method - it isn't part of
the standard Test Runner api. It coordinates test discovery and setup
of the Django test environment.

If you want to use an XML test runner instead of the default
Text-based runner, take a copy of django.test.simple.run_tests() and
modify to suit your requirements.

I will admit that this isn't a great solution - copying and modifying
code isn't a great solution to any problem. Backwards-compatible
suggestions welcome.

Yours,
Russ Magee %-)

--

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


Reply via email to