mirror of
https://github.com/jazzband/django-discover-jenkins.git
synced 2026-03-16 22:20:28 +00:00
33 lines
651 B
ReStructuredText
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 = ()
|