diff options
| author | an0o0nym <an0o0nyme@gmail.com> | 2016-07-30 02:03:48 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-08-09 18:37:09 -0400 |
| commit | 2b759c94c562c9ee9b6ca970739be15014050fda (patch) | |
| tree | 17ac6f019d4ee17fb591a923cf0580435bb9fbe8 /docs | |
| parent | a7a7ecd2b026c61a39a46d2d7eced0e06a92c970 (diff) | |
Fixed #26952 -- Added tips for installing test suite dependencies.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/contributing/writing-code/unit-tests.txt | 5 | ||||
| -rw-r--r-- | docs/intro/contributing.txt | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/docs/internals/contributing/writing-code/unit-tests.txt b/docs/internals/contributing/writing-code/unit-tests.txt index 188a71d5e6..6799b31871 100644 --- a/docs/internals/contributing/writing-code/unit-tests.txt +++ b/docs/internals/contributing/writing-code/unit-tests.txt @@ -232,6 +232,11 @@ like so:: $ pip install -r tests/requirements/py3.txt # Python 2: py2.txt +If you encounter an error during the installation, your system might be missing +a dependency for one or more of the Python packages. Consult the failing +package's documentation or search the Web with the error message that you +encounter. + You can also install the database adapter(s) of your choice using ``oracle.txt``, ``mysql.txt``, or ``postgres.txt``. diff --git a/docs/intro/contributing.txt b/docs/intro/contributing.txt index bba7bbe0ac..0cc0394836 100644 --- a/docs/intro/contributing.txt +++ b/docs/intro/contributing.txt @@ -252,6 +252,11 @@ into the Django ``tests/`` directory and then running: $ pip install -r requirements/py3.txt +If you encounter an error during the installation, your system might be missing +a dependency for one or more of the Python packages. Consult the failing +package's documentation or search the Web with the error message that you +encounter. + Now we are ready to run the test suite. If you're using GNU/Linux, Mac OS X or some other flavor of Unix, run: |
