소스 검색

Fixed #26952 -- Added tips for installing test suite dependencies.

an0o0nym 8 년 전
부모
커밋
2b759c94c5
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      docs/internals/contributing/writing-code/unit-tests.txt
  2. 5 0
      docs/intro/contributing.txt

+ 5 - 0
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``.
 

+ 5 - 0
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: