After creating a PR against the Django project Sphinx is emitting these warnings when running:
make html
locally:
/path-to-project-dir/django/docs/releases/1.10.txt:304: WARNING: py:meth reference target not found: django.test.testcases.SimpleTestCase.assertFormValid
/path-to-project-dir/django/docs/releases/1.10.txt:304: WARNING: py:meth reference target not found: django.test.testcases.SimpleTestCase.assertFormNotValid
Basically Sphinx is reporting it's missing references.
The error (actually a warning) also happens while building docs: http://djangoci.com/job/docs/7444/console.
Answers to a question reporting a similar issue suggest editing docs/conf.py
; however in this case this is not an option as the effect would be to edit docs/conf.py
for the whole Django project.
Any solution to this issue that does not involve changing docs/conf.py
?