summaryrefslogtreecommitdiff
path: root/docs/internals/contributing/writing-code
diff options
context:
space:
mode:
authorkrishbharadwaj <krishna.bmsce@gmail.com>2016-04-06 01:22:34 +0530
committerTim Graham <timograham@gmail.com>2016-04-05 21:34:26 -0400
commit361cb7a857f1ca69754c0e3a0038097d09508f2c (patch)
tree6e0f5a35d1b3cec97250714d0ec508ed93bc51ee /docs/internals/contributing/writing-code
parent90ce5d46bf62a74d7c78a61c1a7bab64f7cb1735 (diff)
Fixed #26448 -- Added details for running tests with a different database backend.
Diffstat (limited to 'docs/internals/contributing/writing-code')
-rw-r--r--docs/internals/contributing/writing-code/unit-tests.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt
index 2cbbd30dd4..b4ec5780cf 100644
--- a/docs/internals/contributing/writing-code/unit-tests.txt
+++ b/docs/internals/contributing/writing-code/unit-tests.txt
@@ -50,10 +50,11 @@ Having problems? See :ref:`troubleshooting-unit-tests` for some common issues.
Using another ``settings`` module
---------------------------------
-The included settings module allows you to run the test suite using
-SQLite. If you want to test behavior using a different database (and
-if you're proposing patches for Django, it's a good idea to test
-across databases), you may need to define your own settings file.
+The included settings module (``tests/test_sqlite.py``) allows you to run the
+test suite using SQLite. If you want to run the tests using a different
+database, you'll need to define your own settings file. Some tests, such as
+those for ``contrib.postgres``, are specific to a particular database backend
+and will be skipped if run with a different backend.
To run the tests with different settings, ensure that the module is on your
``PYTHONPATH`` and pass the module with ``--settings``.