diff --git a/README b/README
index 230b2e7..17ad6b5 100644
a
|
b
|
To contribute to Django:
|
40 | 40 | |
41 | 41 | To run Django's included unit tests: |
42 | 42 | |
43 | | * Follow the instructions in the section "Unit tests" in |
44 | | docs/faq/contributing.txt, published online at http://docs.djangoproject.com/en/dev/internals/contributing/#claiming-tickets#unit-tests |
45 | | No newline at end of file |
| 43 | * Follow the instructions in the "Unit tests" section of |
| 44 | docs/internals/contributing.txt, published online at http://docs.djangoproject.com/en/dev/internals/contributing/#running-the-unit-tests |
diff --git a/docs/internals/contributing.txt b/docs/internals/contributing.txt
index 9d8827f..a2f5c95 100644
a
|
b
|
Running the unit tests
|
877 | 877 | Quickstart |
878 | 878 | ~~~~~~~~~~ |
879 | 879 | |
880 | | Running the tests requires a Django settings module that defines the databases to |
881 | | use. To run the tests with the included minimal ``settings`` module, ``cd`` to the |
882 | | Django ``tests/`` directory and type: |
| 880 | Running the tests requires a Django settings module that defines the databases |
| 881 | to use. To run the tests with the included minimal ``settings`` module, ``cd`` |
| 882 | to the Django ``tests/`` directory and type: |
883 | 883 | |
884 | 884 | .. code-block:: bash |
885 | 885 | |
886 | 886 | ./runtests.py --settings=test_sqlite |
887 | 887 | |
888 | | Using the included ``test_sqlite.py`` allows you to get started running the tests |
889 | | against the SQLite database backend without doing anything else on your |
| 888 | Using the included ``test_sqlite.py`` allows you to get started running the |
| 889 | tests against the SQLite database backend without doing anything else on your |
890 | 890 | filesystem. However it should be noted that running against other database |
891 | 891 | backends is recommended for certain types of test cases. |
892 | 892 | |
893 | | If you get an ``ImportError: No module named django.contrib`` error, you need to add your distribution of Django to your ``PYTHONPATH`` - see `Pointing Python at the new Django version`_ below. |
| 893 | If you get an ``ImportError: No module named django.contrib`` error, you need |
| 894 | to add your distribution of Django to your ``PYTHONPATH``. This can be done |
| 895 | temporarily by symlinking the django directory. To do so, type: |
| 896 | |
| 897 | .. code-block:: bash |
| 898 | |
| 899 | ln -s ../django/ django |
| 900 | |
| 901 | For more details, and better options if you plan on using this version of |
| 902 | Django long-term, read `Pointing Python at the new Django version`_ below. |
894 | 903 | |
895 | 904 | Using another ``settings`` module |
896 | 905 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |