#16388: django unittest bug
--------------------------------------+-----------------------------------
               Reporter:  freewave@…  |          Owner:  nobody
                   Type:  Bug         |         Status:  closed
              Milestone:              |      Component:  Testing framework
                Version:  1.3         |       Severity:  Normal
             Resolution:  needsinfo   |       Keywords:
           Triage Stage:  Unreviewed  |      Has patch:  0
    Needs documentation:  0           |    Needs tests:  0
Patch needs improvement:  0           |  Easy pickings:  0
                  UI/UX:  0           |
--------------------------------------+-----------------------------------
Changes (by aaugustin):

 * status:  new => closed
 * resolution:   => needsinfo


Comment:

 It looks like there's an obsolete or invalid version of unittest2
 installed on your machine. Can you determine which version of unittest is
 actually loaded by Django?

 For instance, in `./manage.py shell`, what's the output of:
 {{{
 >>> import unittest2
 >>> unittest2.__file__
 >>> unittest2.__version__
 }}}


 {{{
 >>> import unittest
 >>> unittest.__file__
 >>> unittest.__version__
 }}}

 {{{
 >>> from django.utils import unittest
 >>> unittest.__version__
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/16388#comment:3>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

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

Reply via email to