Opened 17 years ago

Closed 17 years ago

#4226 closed (fixed)

Running Django unit tests requires DATABASE_NAME setting despite what the docs. say

Reported by: Paul Smith <paulsmith@…> Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords: contributing database_name settings
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The 'Contributing to Django' docs say that DATABASE_ENGINE , DATABASE_USER , and DATABASE_PASSWORD settings are required to running Django's unit tests, but DATABASE_NAME is also required.

$ ./runtests.py --settings=settings
Traceback (most recent call last):
  File "./runtests.py", line 154, in <module>
    django_tests(int(options.verbosity), args)
  File "./runtests.py", line 127, in django_tests
    failures = run_tests(test_models, verbosity, extra_tests=extra_tests)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/django/test/simple.py", line 81, in run_tests
    create_test_db(verbosity)
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/django/test/utils.py", line 62, in create_test_db
    cursor = connection.cursor()
  File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/django/db/backends/postgresql/base.py", line 71, in cursor
    raise ImproperlyConfigured, "You need to specify DATABASE_NAME in your Django settings file."  
django.core.exceptions.ImproperlyConfigured: You need to specify DATABASE_NAME in your Django settings file.

Attachments (1)

contributing_db_name.diff (1.0 KB ) - added by Paul Smith <paulsmith@…> 17 years ago.
Added DATABASE_NAME to section on running unit tests

Download all attachments as: .zip

Change History (3)

by Paul Smith <paulsmith@…>, 17 years ago

Attachment: contributing_db_name.diff added

Added DATABASE_NAME to section on running unit tests

comment:1 by Simon G. <dev@…>, 17 years ago

Summary: [patch] Running Django unit tests requires DATABASE_NAME settingRunning Django unit tests requires DATABASE_NAME setting despite what the docs. say
Triage Stage: UnreviewedReady for checkin

comment:2 by Malcolm Tredinnick, 17 years ago

Resolution: fixed
Status: newclosed

(In [5160]) Fixed #4226 -- Added DATABASE_NAME to the list of settings required to be
mentioned in the settings file for the tests to run. Thanks, Paul Smith.

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