Django project configuration ============================ The :py:mod:``gatherstats_project`` module contains top-level configuration and URL routes for the entire web application. Settings -------- Django settings for |project|. .. _settings: Generic settings ```````````````` .. automodule:: gatherstats_project.settings :members: .. _settings_testsuite: Test-suite specific settings ```````````````````````````` .. automodule:: gatherstats_project.settings.tox :members: .. _settings_developer: Developer specific settings ``````````````````````````` .. automodule:: gatherstats_project.settings.developer :members: Custom test suite runner ------------------------ The :any:`test suite settings ` overrides the ``TEST_RUNNER`` setting to point to :py:class:`~gatherstats_project.test.runner.BufferedTextTestRunner`. This runner captures output to stdout and stderr and only reports the output if a test fails. This helps make our tests a little less noisy. .. autoclass:: gatherstats_project.test.runner.BufferedDiscoverRunner .. autoclass:: gatherstats_project.test.runner.BufferedTextTestRunner