Django project configuration ============================ The :py:mod:``gauthwebapp`` module contains top-level configuration and URL routes for the entire web application. Settings -------- Django settings for |project|. .. _settings: Generic settings ```````````````` .. automodule:: gauthwebapp.settings :members: .. _settings_testsuite: Test-suite specific settings ```````````````````````````` .. automodule:: gauthwebapp.settings.tox :members: .. _settings_developer: Developer specific settings ``````````````````````````` .. automodule:: gauthwebapp.settings.developer :members: Custom test suite runner ------------------------ The :any:`test suite settings ` overrides the ``TEST_RUNNER`` setting to point to :py:class:`~gauthwebapp.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:: gauthwebapp.test.runner.BufferedDiscoverRunner .. autoclass:: gauthwebapp.test.runner.BufferedTextTestRunner