Added basic Jenkins testing support.

This commit is contained in:
2013-04-04 20:28:11 +01:00
parent 6a35729f7c
commit 74764bae32
2 changed files with 21 additions and 0 deletions

17
app/vapemap/conf/test.py Normal file
View File

@@ -0,0 +1,17 @@
from .base import *
INSTALLED_APPS += [
'django-jenkins',
]
PROJECT_APPS = [
'stores',
]
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',
)

4
requirements-testing.txt Normal file
View File

@@ -0,0 +1,4 @@
pep8
pyflakes
http://download.logilab.org/pub/common/logilab-common-0.58.2.tar.gz
-e git://github.com/kmmbvnr/django-jenkins.git#egg=django-jenkins