Opened 13 years ago

Last modified 13 years ago

#16388 closed Bug

django unittest bug — at Version 2

Reported by: freewave@… Owned by: nobody
Component: Testing framework Version: 1.3
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Aymeric Augustin)

enviroment: python2.7 + django1.3
with the steps below:

  • 1 django-admin.py startproject myapp
  • 2 cd myapp
  • 3 manage.py startapp foo
  • 4 manage.py test

error occurs:

File "C:\Python27\lib\site-packages\django\test\simple.py", line 237, in setup_test_environment
	unittest.installHandler()
AttributeError:'module' object has no attribute 'installHandler'

problem?:
the file “site-packages\django\utils\unittest” contains the code

try:
    # check the system path first
    from unittest2 import *
except ImportError:
    if sys.version_info >= (2,7):
        # unittest2 features are native in Python 2.7
        from unittest import *
    else:
        ...

but unittest2 features are native in Python 2.7?

Change History (2)

comment:1 by Bernhard Essl, 13 years ago

I can't reproduce this error on my Windows XP virtual machine.

comment:2 by Aymeric Augustin, 13 years ago

Description: modified (diff)

Fixed formatting, just to be able to read the bug report — please use the preview before submitting a bug.

Note: See TracTickets for help on using tickets.
Back to Top