diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-05-05 04:27:16 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-05-05 04:27:16 +0000 |
| commit | 87416a9c3ca50fe7c9a8a34625714253bda25ac8 (patch) | |
| tree | 475a0dadaee03b61b3cc70733d5e98bbe608ca57 /docs/contributing.txt | |
| parent | cca0e7346d314220e489c156d6a552a75244fbd4 (diff) | |
Fixed #1216 -- Noted in docs/contributing.txt 'Unit tests' section that the user needs permission to create a database
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2846 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/contributing.txt')
| -rw-r--r-- | docs/contributing.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/contributing.txt b/docs/contributing.txt index 4387424a3b..d7552cdc7c 100644 --- a/docs/contributing.txt +++ b/docs/contributing.txt @@ -247,8 +247,10 @@ To run the tests, ``cd`` to the ``tests/`` directory and type:: Yes, the unit tests need a settings module, but only for database connection info -- the ``DATABASE_ENGINE``, ``DATABASE_USER`` and ``DATABASE_PASSWORD``. + The unit tests will not touch your database; they create a new database, called -``django_test_db``, which is deleted when the tests are finished. +``django_test_db``, which is deleted when the tests are finished. This means +your user account needs permission to execute ``CREATE DATABASE``. Requesting features =================== |
