Added Jenkins testing support

This commit is contained in:
2012-10-19 22:27:04 +01:00
parent da2bf07f9f
commit 53fc8e5ed8
2 changed files with 22 additions and 0 deletions

View 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