Django-extensions test_error_logging

When running the full test suite for django, I get this error:

FAIL: test_error_logging (django_extensions.tests.management_command.CommandTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/var/lib/jenkins/shiningpanda/jobs/cb5c943f/virtualenvs/d41d8cd9/local/lib/python2.7/site-packages/django_extensions/tests/management_command.py", line 35, in test_error_logging
    self.assertEqual(len(handler.messages['error']), 1)
AssertionError: 0 != 1

      

Can someone please explain why I can get this and how to stop it?

+3


source to share


1 answer


The behavior you describe is similar to this issue on the django-extensions github page.



Looks like the solution should update to 1.0.3

0


source







All Articles