django-discover-jenkins/docs/settings.rst
Jeff Triplett ba16ef57d1 Update settings.rst
Updated TEST_TASKS to reflect renamed task files.
2013-08-20 11:31:31 -05:00

33 lines
651 B
ReStructuredText

.. ref-settings:
Settings
========
* ``TEST_TASKS``
List of tasks handled by the test runner when the ``--jenkins`` option is
active.
Default value::
TEST_TASKS = (
'discover_jenkins.tasks.run_pylint.PyLintTask',
'discover_jenkins.tasks.with_coverage.CoverageTask',
)
* ``TEST_OUTPUT_DIR``
The directory that the reports generated by your tasks are saved to.
Default value::
TEST_OUTPUT_DIR = 'reports'
* ``TEST_PROJECT_APPS``
The list of apps to run tasks from. This is not used for test discover, but
it is used with tasks like coverage and pylint.
Default value::
TEST_PROJECT_APPS = ()