mirror of
https://github.com/nikdoof/django-ett.git
synced 2025-12-19 12:49:22 +00:00
Added Jenkins testing support
This commit is contained in:
20
django_ett/django_ett/settings/test.py
Normal file
20
django_ett/django_ett/settings/test.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from .common import *
|
||||
|
||||
INSTALLED_APPS += (
|
||||
'django_jenkins',
|
||||
)
|
||||
|
||||
PROJECT_APPS = [
|
||||
'etasks',
|
||||
]
|
||||
|
||||
JENKINS_TASKS = (
|
||||
'django_jenkins.tasks.run_pylint',
|
||||
'django_jenkins.tasks.with_coverage',
|
||||
'django_jenkins.tasks.django_tests',
|
||||
'django_jenkins.tasks.run_pep8',
|
||||
'django_jenkins.tasks.run_pyflakes',
|
||||
)
|
||||
|
||||
|
||||
print INSTALLED_APPS
|
||||
Reference in New Issue
Block a user